gpt4 book ai didi

Android:使用图标作为后退按钮而不重新加载以前的 Activity

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:58:17 25 4
gpt4 key购买 nike

我有以下代码来启用主页按钮作为后退按钮。我面临的问题是来自这个 Activity ,如果我使用真正的后退按钮,它只会回到我离开时的前一个 Activity 。如果我使用主页按钮,它会重新加载页面,所以我会丢失之前对其所做的操作。我确定我缺少的是简单的东西。

@Override
public boolean onCreateOptionsMenu(Menu menu)
{
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.census_management_search, menu);
ActionBar actionBar = getActionBar();
actionBar.setDisplayHomeAsUpEnabled(true);
return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item)
{
// Handle item selection
switch (item.getItemId())
{
case android.R.id.home:
Intent intent = new Intent(this, CensusManagementActivity.class);
NavUtils.navigateUpTo(this, intent);
return true;
default:
return super.onOptionsItemSelected(item);
}
}

最佳答案

尝试使用 onBackPressed() 方法代替 IntentNavUtils

@Override
public boolean onOptionsItemSelected(MenuItem item)
{
// Handle item selection
switch (item.getItemId())
{
case android.R.id.home:
onBackPressed();
return true;
default:
return super.onOptionsItemSelected(item);
}
}

关于Android:使用图标作为后退按钮而不重新加载以前的 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16093372/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com