我已经设置了自定义工具栏。但出于某种原因,在4.1上箭头资产不会显示。触摸区域仍然存在且有效,但资产不会出现。
这是创建工具栏的代码。 (工具栏在我的基本活动的其他位置设置)
public ActionBar(AppCompatActivity activity) {
Toolbar toolbar = (Toolbar) activity.findViewById(R.id.toolbar);
toolbar.findViewById(R.id.header_layout).setVisibility(View.GONE);
actionBar = activity.getSupportActionBar();
savedDisplayOptions = actionBar.getDisplayOptions();
savedTitle = actionBar.getTitle();
actionBar.setDisplayShowCustomEnabled(false);
actionBar.setDisplayShowTitleEnabled(true);
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setHomeAsUpIndicator(R.drawable.up_button);
actionBar.setDisplayShowHomeEnabled(false);
}
这里是按钮xml。你可以看到我修复了4.1中操作栏的错误(我试过删除它无效)
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:left="@dimen/double_spacing"
android:right="@dimen/double_spacing">
<shape>
<size android:height="@dimen/standard_icon_size" android:width="@dimen/standard_icon_size"/>
<!-- DO NOT REMOVE, this fixes a bug on 4.1 where the background defaults to black -->
<solid android:color="@color/transparent"/>
</shape>
</item>
<item
android:left="@dimen/double_spacing">
<bitmap android:src="@drawable/ic_up_arrow" android:gravity="left"/>
</item>
最后,我的工具栏看起来像什么。
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="@dimen/action_bar_height"
android:elevation="@dimen/half_spacing"
app:theme="@style/ToolbarTheme"
android:background="@color/white"
tools:ignore="UnusedAttribute">
<com.mypackage.core.view.TextView
android:id="@+id/standard_toolbar_title"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:ellipsize="end"
android:maxLines="1"
style="@style/H5.Blue" />
<com.mypackage.util.graphics.ActionBarView
android:id="@+id/max_header_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone"/>
</android.support.v7.widget.Toolbar>
我刚发现有趣的事情。如果我从up_button xml中的位图中删除了gravity属性,则会出现箭头,但会大大拉伸。如果我然后删除透明项目,它会再次消失。
答案 0 :(得分:1)
看起来这是旧的黑客本身。删除后直接指向资产,一切都很好。