我尝试使用不同颜色的自定义上/后按钮图标,因为我还没有找到改变默认机器人上/后按钮颜色的直接方法
我下载了128x128后退按钮图标(PNG)并将其更改为我想要的颜色,也将其放在我的可绘制文件夹中。但是我还是无法让它显示出来。
这是我到目前为止所尝试的内容,
在我的Styles.xml中,我包含了这个:
<style name="customStyle" parent="@style/Theme.AppCompat.Light.DarkActionBar">
<item name="actionBarStyle">@style/customActionBarStyle</item>
<item name="android:textColorPrimary">@color/titletextcolor</item>
</style>
<style name="customActionBarStyle" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
<item name="background">@drawable/custom</item>
<item name="android:homeAsUpIndicator">@drawable/upbutton</item>
</style>
在我的活动onCreate中,我包含了这个:
getSupportActionBar().setHomeAsUpIndicator(R.drawable.upbutton);
在onOptionsItemSelected中,我这样做了:
@Override
public boolean onOptionsItemSelected(MenuItem item)
{
switch (item.getItemId())
{
case android.R.id.home:
finish();
}
return true;
}
任何人都可以帮助弄清楚我做错了什么,或者我错过了什么?提前谢谢。
答案 0 :(得分:2)
这是我的toolbar.xml
<android.support.design.widget.AppBarLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:theme="@style/AppTheme.AppBarOverlay"
xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/activity_title"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="center"
android:gravity="center"
tools:text="[ACTIVITY TITLE]"/>
</LinearLayout>
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
以及styles.xml中的条目
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar">
<item name="android:background">@color/colorDarkBlue</item>
<item name="android:homeAsUpIndicator">@drawable/upbutton</item>
</style>
您仍然必须这样做:
getSupportActionBar().setHomeAsUpIndicator(R.drawable.upbutton);