我的布局中有一个工具栏,我将其设置为操作栏。问题是我想要更改导航图标并添加一些操作按钮,但这些都不起作用。
我的布局是这样的:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/com.emilpana.carsharing"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<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"
style="@style/Toolbar"
app:navigationIcon="@drawable/ic_car"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:titleTextAppearance="@style/ToolbarTitle" />
<ImageView
style="@style/SecondaryShadow"
android:contentDescription="@null" />
</LinearLayout>
此布局包含在我的活动中。 我在活动中将其设置为:
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
toolbar.setNavigationIcon(R.drawable.ic_car);
// getSupportActionBar().setHomeButtonEnabled(false);
getSupportActionBar().setTitle(null);
未设置图标,它是默认的汉堡包。 我尝试了2种风格的应用程序:
<style name="AppTheme" parent="Theme.AppCompat.Light">
<item name="android:windowActionBar">false</item>
</style>
和
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
</style>
当我没有将工具栏设置为actionBar时,上面更改导航图标的方法正在运行(添加操作按钮也有效)。 我已经尝试过几十种代码和布局组合,但都没有效果。 有没有人知道为什么工具栏不能定制? 感谢。
答案 0 :(得分:0)
导航图标:
Toolbar toolbar = getActionBarToolbar();
toolbar.setNavigationIcon(R.drawable.id);
toolbar.setNavigationOnClickListener();
标题:
getSupportActionBar().setTitle(title);
对于getActionBarToolbar()
方法:
protected Toolbar getActionBarToolbar() {
if (actionBarToolbar == null) {
actionBarToolbar = (Toolbar) findViewById(R.id.phone_actionbar_toolbar);
if (actionBarToolbar != null) {
setSupportActionBar(actionBarToolbar);
}
}
return actionBarToolbar;
}
主题:
<style name="MyTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="actionBarStyle">@style/MyActionBar</item>
<item name="android:actionBarStyle">@style/MyActionBar</item>
<item name="android:windowContentOverlay">@null</item>
</style>
工具栏:
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:iosched="http://schemas.android.com/apk/res-auto"
iosched:theme="@style/MyActionBar"
android:id="@+id/phone_actionbar_toolbar"
iosched:titleTextAppearance="@style/MyTextView"
android:layout_width="match_parent"
android:animateLayoutChanges="true"
android:layout_height="?actionBarSize" />