2010-07-02 72 views

回答

6

使用意向

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")); 
    } 
}