我正在尝试新的工具栏组件,但导航图标出现了一些问题。我想为后退导航实现一个自定义图标:
在我的清单中,我为我的活动设置了一个父级:
<activity android:name=".CardsActivity" android:parentActivityName=".MainActivity">
<!-- Parent activity meta-data to support API level 7+ -->
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".MainActivity" />
</activity>
我这样声明工具栏:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="com.example.lollitest.MainActivity" >
<android.support.v7.widget.Toolbar
android:id="@+id/my_awesome_toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
android:layout_marginBottom="10dp"
android:background="?attr/colorPrimary" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/my_awesome_toolbar"
android:text="@string/hello_world" />
</RelativeLayout>
然后在我的活动中,我像这样配置工具栏:
Toolbar toolbar = (Toolbar) findViewById(R.id.my_awesome_toolbar);
toolbar.setNavigationIcon(R.drawable.ic_good);
toolbar.setTitle("Title");
toolbar.setSubtitle("Sub");
toolbar.setLogo(R.drawable.ic_launcher);
setSupportActionBar(toolbar);
这给了我:
后退图标不是我设置的那个setNavigationIcon()
!无论我为该方法提供什么可绘制的内容,导航图标始终是后退箭头。
我试图删除清单中的父关联,但唯一的效果是(显然)防止按钮返回。
相反,如果我想要默认的后退箭头图标并且不打电话,setNavigationIcon()
我根本没有任何图标。
处理工具栏中导航图标的正确方法是什么(自定义和默认)?
注意:我在 Android 4.4 上运行我的测试