我的问题是了解如何正确使用意图。在谷歌搜索和阅读有关该主题的所有文档和文章后,我仍然无法解决我的问题。我有两个活动:“Searchable”和“ActivityWordInfo”。 “可搜索”活动搜索数据库中的单词,并显示搜索结果或建议。在用户cliks其中一个搜索结果后,启动“ActivityWordInfo”活动并显示单词定义。以下是代码的一部分:
可搜索:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.search);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
// Get the intent, verify the action and get the query
if( savedInstanceState != null ){
//the application is being reloaded
query = savedInstanceState.getString("searchedWord");
doMySearch(query); //does the search in the database
}else{
Intent intent = getIntent();
if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
query = intent.getStringExtra(SearchManager.QUERY);
doMySearch(query);
}
}
}
@Override
public void onSaveInstanceState(Bundle savedInstanceState){
super.onSaveInstanceState(savedInstanceState);
savedInstanceState.putString("searchedWord", query);
//saves the searched word if this activity is killed
}
@Override
public void onClick(View v) { //when one of the search results is clicked
int wordID = (Integer) v.getTag();
Intent intent = new Intent(Searchable.this, ActivityWordInfo.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP|Intent.FLAG_ACTIVITY_SINGLE_TOP);
Bundle b = new Bundle();
b.putInt("key", wordID);
b.putInt("calling_activity", callingActivityId);
intent.putExtras(b);
startActivity(intent);
}
ActivityWordInfo:
public void onCreate(Bundle savedInstanceState) {
...
Bundle b = getIntent().getExtras();
current_word_id = b.getInt("key", 0);
callingActivityId = b.getInt("calling_activity", 0);
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
switch(callingActivityId){
case 3: //which is the ID of Searchable activity
Intent intent3 = new Intent(ActivityWordInfo.this, Searchable.class);
intent3.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP|Intent.FLAG_ACTIVITY_SINGLE_TOP);
startActivity(intent3);
break;
}
break;
}
当用户在ActivityWordInfo中并向上导航时,我希望转到Searchable活动,该活动本应保存其实例状态(结果列表应该仍然存在)。实际发生了什么: - 用户输入的单词被分配到'query'变量,然后结果和建议显示在“Searchable”中 - 用户单击其中一个单词并创建“ActivityWordInfo” 然后,当用户向上导航时,为“可搜索”活动调用onSaveInstanceState,然后它被解除并创建。结果是空布局:(
我无法理解为什么“Searchable”被破坏然后被创造出来!这只发生在Android 4.2中而不是在较低的API中(在2.3.3中完美地按照我的预期工作)。 JellyBean中的活动生命周期有什么不同吗?
注意:我不能在清单中使用parentActivity属性,因为多个父级调用了ActivityWordInfo。