* 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;

相关文章:

  • 2021-11-20
  • 2021-10-10
  • 2021-11-11
  • 2021-09-29
  • 2022-01-13
  • 2021-11-27
  • 2022-12-23
  • 2021-08-31
猜你喜欢
  • 2022-12-23
  • 2022-01-08
  • 2021-07-30
  • 2021-12-06
  • 2021-07-18
  • 2022-12-23
  • 2022-01-15
相关资源
相似解决方案