我只想在工具栏左侧看一个后退按钮。但是当我添加下面的代码时,会出现在toolbar的右侧。我可以将它更改为左侧吗?
我的代码
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" tools:context="com.me.myapp.activities.Timer">
<item
android:id="@+id/backButton"
android:title="Back Button"
android:icon="@mipmap/back_icon"
app:showAsAction="ifRoom"></item>
</menu>
答案 0 :(得分:26)
您只需在工具栏左上方显示Back
图标,然后配置Toolbar
。
mToolBar = (Toolbar) findViewById(R.id.toolbarLayout);
mToolBar.setTitle("Toolbar");
mToolBar.setNavigationIcon(R.drawable.ic_back_shadow);
setSupportActionBar(mToolBar);
由于ToolBar
菜单项完全取决于您的设备是否支持RTL(从右到左),主要用于menu items
而不是back key
。
此外,您可以使用
处理该背面图标@Override
public boolean onOptionsItemSelected(MenuItem item) {
// TODO Auto-generated method stub
switch (item.getItemId()) {
case android.R.id.home:
finish();
return true;
default:
return super.onOptionsItemSelected(item);
}
}