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

最佳答案

你使用意图的putExtras(Bundle)方法

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

然后在意图中你检索额外的
Bundle extras = this.getIntent().getExtras();
if ( extras != null ) {
  if ( extras.containsKey("my.unique.extras.key") ) {
    this.setTitle(extras.getString("my.unique.extras.key"));
  }
}

10-08 16:49