如何使用意图和意图过滤器将消息从一个活动发送到另一个活动?
答案 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"));
}
}