1
如何使用意向過濾器和意向過濾器將消息從一個活動發送到另一個活動?通過意向過濾器發送消息
如何使用意向過濾器和意向過濾器將消息從一個活動發送到另一個活動?通過意向過濾器發送消息
使用意向
Bundle extras = new Bundle();
extras.putString("my.unique.extras.key", "this is my message");
myIntent.putExtras(extras);
的putExtras(Bundle)方法然後在Intent您檢索的額外
Bundle extras = this.getIntent().getExtras();
if (extras != null) {
if (extras.containsKey("my.unique.extras.key")) {
this.setTitle(extras.getString("my.unique.extras.key"));
}
}