android – 如何使用v7工具栏上的工具栏主页按钮提供向上导航
作者:互联网
我的活动中有一个工具栏(导入android.support.v7.widget.Toolbar;),我正在尝试使用其主页按钮提供向上导航.我有的:
表现:
<!-- ... -->
<activity android:name=".SettingsActivity"
android:label="@string/settings"
android:parentActivityName=".MainActivity"/>
<!-- ... -->
view_toolbar.xml:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp">
</android.support.v7.widget.Toolbar>
activity_settings.xml:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- Toolbar -->
<include
layout="@layout/view_toolbar" />
<!-- ... -->
我的onCreate方法:
super.onCreate(bundle)
setContentView(R.layout.activity_settings);
// Set the toolbar
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
到目前为止,我不应该有一个按钮,我没有.所以我们没事.但是当我试图添加它时,我做不到.
首先我尝试了这个:
getSupportActionBar().setDisplayShowHomeEnabled(true);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
没工作.
然后我尝试了这个(如图here所示):
toolbar.setNavigationOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(ToolbarActivity.this, "Up clicked",
Toast.LENGTH_SHORT).show();
NavUtils.navigateUpFromSameTask(ToolbarActivity.this);
}
});
我甚至尝试了一种我在某处看到的解决方法,包括创建一个虚拟菜单并尝试从onOptionsItemSelected获取事件(从未被调用过).
我能做什么?通过工具栏提供向上导航的正确方法是什么?
解决方法:
您是否有以下代码将工具栏设置为默认活动操作栏?
setSupportActionBar(toolbar);
您没有将图像图标设置为主页按钮,可能会显示,但您无法看到它.
getSupportActionBar().setHomeAsUpIndicator(iconDrawable);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
正如@Gonzalo所说,你还必须覆盖菜单选择事件来处理onClick事件的主页按钮
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
// Respond to the action bar's Up/Home button
case android.R.id.home:
//handle the home button onClick event here.
return true;
case android.R.id.other_menu
return true
}
return super.onOptionsItemSelected(item);
}
为什么你没有appbarlayout来包含工具栏?
<android.support.design.widget.AppBarLayout
android:id="@+id/baseAppbarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
android:id="@+id/baseToolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.AppBarLayout>
更多actionbar实现细节请看看我的github项目,希望它可以帮助:
标签:android,android-toolbar 来源: https://codeday.me/bug/20191001/1837667.html