zoukankan      html  css  js  c++  java
  • Message

    * Defines a message containing a description and arbitrary data object that can be
    * sent to a {@link Handler}. This object contains two extra int fields and an
    * extra object field that allow you to not do allocations in many cases.

    /**
    * User-defined message code so that the recipient can identify
    * what this message is about. Each {@link Handler} has its own name-space
    * for message codes, so you do not need to worry about yours conflicting
    * with other handlers.
    */
    public int what;

    /*package*/ Bundle data;

    /*package*/ Handler target;

    /*package*/ Runnable callback;
  • 相关阅读:
    第一周作业
    第一次作业
    第八周作业
    第七周作业
    第六周作业
    第五周作业
    第四周作业
    第三周作业
    第二周作业
    第一周作业2
  • 原文地址:https://www.cnblogs.com/feng9exe/p/5950320.html
Copyright © 2011-2022 走看看