Android向上按钮不起作用
Posted
技术标签:
【中文标题】Android向上按钮不起作用【英文标题】:Android Up button not working 【发布时间】:2015-11-03 13:51:33 【问题描述】:我正在尝试手动实现在按下操作栏上的向上按钮时必须执行的操作,但由于某种原因,当我按下它时没有任何反应。
这是我的代码:
public class ActivityOne extends AppCompatActivity
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_activity_one);
Toolbar toolbar = (Toolbar)findViewById(R.id.toolbar_actionbar);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
Button button = (Button)findViewById(R.id.btn1);
button.setOnClickListener(new View.OnClickListener()
@Override
public void onClick(View view)
openActivityTwo();
);
Button button2 = (Button)findViewById(R.id.btn2);
button2.setOnClickListener(new View.OnClickListener()
@Override
public void onClick(View view)
openActivityThree();
);
void openActivityTwo()
Intent intent = new Intent(this, ActivityTwo.class);
startActivity(intent);
void openActivityThree()
Intent intent = new Intent(this, ActivityThree.class);
startActivity(intent);
@Override
public boolean onCreateOptionsMenu(Menu menu)
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_activity_one, menu);
return true;
@Override
public boolean onOptionsItemSelected(MenuItem item)
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in androidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings)
return true;
else if(id == R.id.homeAsUp)
Log.i("","Up is pressed");
finish();
return true;
return super.onOptionsItemSelected(item);
我知道我必须为活动明确分配一个父活动我想在清单文件上实现向上导航,但问题是这个活动有多个父母所以我想调用@ 987654322@ 在此活动上按下向上按钮时的方法将是更好的方法。
我已经尝试了id == R.id.home
和id == R.id.homeAsUp
,但它们都不起作用。不知道是因为我用AppCompactActivity
还是什么请帮忙
【问题讨论】:
您在按钮单击中开始另一个活动,而不是在 actionButtonBack 单击中 【参考方案1】:这里是如何实现的,试试这个代码
使用 android.R.id.home 代替 R.id.home 或 R.id.homeAsUp
public boolean onOptionsItemSelected(final MenuItem item)
switch (item.getItemId())
case android.R.id.home:
//use onBackPressed() OR finish();
return true;
default:
return super.onOptionsItemSelected(item);
【讨论】:
有一天我会给你买纸杯蛋糕,非常感谢!【参考方案2】:正确的做法是覆盖public boolean onNavigateUp()
,就像覆盖onBackPressed()
一样。
【讨论】:
ive 字面上实现了 onNavigateUp()、onItemSelected(),并添加了 .setNavigationOnCLickListener()。没有什么可以让我去上一个活动。? @filthy_wizard 你试过调用 onBackPressed()【参考方案3】:使用android studio 3.6.2我发现我的应用程序默认不显示Up按钮,但可以轻松添加..
转到 AndroidManifest.xml 并更新每个需要向上按钮的活动,如下所示:
<activity
android:name=".yourClassName"
android:parentActivityName=".MainActivity">
<meta-data android:name="android.support.PARENT_ACTIVITY"
android:value="com.example.yourPackageName" />
</activity>
向上按钮的目标位置是通过更改 parentActivityName 来设置的。在此示例中,我将其设置为“.MainActivity”,但您可以将其更改为您希望用户导航到的任何活动。
【讨论】:
以上是关于Android向上按钮不起作用的主要内容,如果未能解决你的问题,请参考以下文章