通过意图过滤器发送消息

时间:2010-07-02 11:54:03

标签: android

如何使用意图和意图过滤器将消息从一个活动发送到另一个活动?

1 个答案:

答案 0 :(得分:6)

您使用Intent的putExtras(Bundle)方法

Bundle extras = new Bundle();
extras.putString("my.unique.extras.key", "this is my message");
myIntent.putExtras(extras);

然后在Intent中检索附加内容

Bundle extras = this.getIntent().getExtras();
if ( extras != null ) {
  if ( extras.containsKey("my.unique.extras.key") ) {
    this.setTitle(extras.getString("my.unique.extras.key"));
  }
}