gpt4 book ai didi

android - 单击工具栏的后退按钮不会关闭 Activity

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

引用下图, enter image description here
我想回到之前的 Activity 。
但是在点击工具栏上的后退按钮时,没有任何反应。
我已经使用以下代码来实现仍然没有运气。

public boolean onOptionsItemSelected(MenuItem item){
if(item.getItemId() == R.id.home)
{
finish();
}
return true;
}

最佳答案

@Override
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
switch (id) {
// Respond to the action bar's Up/Home button
case android.R.id.home:
//NavUtils.navigateUpFromSameTask(this);
onBackPressed();
return true;
}
return super.onOptionsItemSelected(item);
}

关于android - 单击工具栏的后退按钮不会关闭 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32598846/

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