我无法改变后退按钮的颜色。我正在使用工具栏材料设计。在我的应用程序中,我应用工具栏的黑色背景,但默认情况下背面设计为黑色,这就是为什么我只想更改此后退按钮的颜色。请给我解决方案。
谢谢
答案 0 :(得分:131)
您可以为styles.xml添加样式,
<style name="ToolbarTheme" parent="@style/ThemeOverlay.AppCompat.ActionBar">
<!-- Customize color of navigation drawer icon and back arrow -->
<item name="colorControlNormal">@color/toolbar_color_control_normal</item>
</style>
使用 app:theme 将其作为主题添加到工具栏layout.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:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:theme="@style/ToolbarTheme" >
</android.support.v7.widget.Toolbar>
答案 1 :(得分:71)
以下是为工具栏实现明暗主题的最简单方法。您必须更改工具栏标记的app:theme
值
应用程式:主题=&#34; @风格/ ThemeOverlay.AppCompat.Light&#34;
应用程式:主题=&#34; @风格/ ThemeOverlay.AppCompat&#34;
答案 2 :(得分:56)
使用这种风格
<style name="Theme.MyFancyTheme" parent="android:Theme.Holo">
<item name="android:homeAsUpIndicator">@drawable/back_button_image</item>
</style>
答案 3 :(得分:22)
对于白色工具栏标题和白色向上箭头,请使用以下主题:
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
答案 4 :(得分:20)
尝试了上述所有建议。我设法更改工具栏中导航图标默认后退按钮箭头颜色的唯一方法是在此基本主题中设置colorControlNormal
。可能是由于父母正在使用Theme.AppCompat.Light.NoActionBar
<style name="BaseTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorControlNormal">@color/white</item>
//the rest of your codes...
</style>
答案 5 :(得分:9)
试试这个,
final Drawable upArrow = getResources().getDrawable(R.drawable.abc_ic_ab_back_mtrl_am_alpha);
upArrow.setColorFilter(getResources().getColor(R.color.grey), PorterDuff.Mode.SRC_ATOP);
getSupportActionBar().setHomeAsUpIndicator(upArrow);
答案 6 :(得分:6)
只需使用MaterialToolbar
并覆盖默认颜色:
<com.google.android.material.appbar.MaterialToolbar
style="@style/Widget.MaterialComponents.Toolbar.Primary"
android:theme="@style/MyThemeOverlay_Toolbar"
..>
具有:
<style name="MyThemeOverlay_Toolbar" parent="ThemeOverlay.MaterialComponents.Toolbar.Primary">
<!-- color used by navigation icon and overflow icon -->
<item name="colorOnPrimary">@color/...</item>
</style>
如果您使用默认风格(androidx.appcompat.widget.Toolbar
的{{1}}或MaterialToolbar
,则可以使用:
Widget.MaterialComponents.Toolbar
具有:
<androidx.appcompat.widget.Toolbar
android:theme="@style/MyThemeOverlay_Toolbar2"
答案 7 :(得分:3)
您可以使用app:navigationIcon
和标题颜色app:titleTextColor
来使用自己的图标
示例:
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?actionBarSize"
android:background="@color/colorPrimary"
app:navigationIcon="@drawable/ic_arrow_back_white_24dp"
app:titleTextColor="@color/white" />
答案 8 :(得分:3)
我在Android应用程序和NoActionBar主题中使用<style name="BaseTheme" parent="Theme.AppCompat.Light.NoActionBar>
主题,colorControlNormal
属性用于更改工具栏中导航图标默认后退按钮箭头的颜色
styles.xml
<style name="BaseTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorControlNormal">@color/your_color</item>
</style>
答案 9 :(得分:3)
我认为如果主题应该生成一些问题,但它动态设置黑色箭头。所以我建议试试这个。
Drawable backArrow = getResources().getDrawable(R.drawable.abc_ic_ab_back_mtrl_am_alpha);
backArrow.setColorFilter(getResources().getColor(R.color.md_grey_900), PorterDuff.Mode.SRC_ATOP);
getSupportActionBar().setHomeAsUpIndicator(backArrow);
答案 10 :(得分:2)
如果要将后退按钮和标题的颜色更改为白色,这可能会有所帮助
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.AppBarLayout>
如果您想要黑色按钮和标题,请将主题从Dark
替换为Light
。
答案 11 :(得分:2)
您不必更改其样式。将工具栏设置为操作栏后,您可以像这样
android.getSupportActionBar().setDisplayHomeAsUpEnabled(true);
android.getSupportActionBar().setHomeAsUpIndicator(R.drawable.back);
//here back is your drawable image
但是您不能通过此方法更改后退箭头的颜色
答案 12 :(得分:2)
我是使用Material Components库来做到这一点的:
<style name="AppTheme" parent="Theme.MaterialComponents.DayNight.NoActionBar">
<item name="drawerArrowStyle">@style/AppTheme.DrawerArrowToggle</item>
</style>
<style name="AppTheme.DrawerArrowToggle" parent="Widget.AppCompat.DrawerArrowToggle">
<item name="color">@android:color/white</item>
</style>
答案 13 :(得分:1)
<style name="BaseTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorControlNormal">@color/white</item>
//your code
</style>
答案 14 :(得分:1)
您可以将此代码添加到Java类中。但是必须先创建矢量资产,然后才能自定义箭头。
actionBar.setHomeAsUpIndicator(R.drawable.ic_arrow_back_black_24dp);
答案 15 :(得分:1)
要在Android 21+上为工具栏设置样式,就有些不同了。
<style name="DarkTheme.v21" parent="DarkTheme.v19">
<!-- toolbar background color -->
<item name="android:navigationBarColor">@color/color_primary_blue_dark</item>
<!-- toolbar back button color -->
<item name="toolbarNavigationButtonStyle">@style/Toolbar.Button.Navigation.Tinted</item>
</style>
<style name="Toolbar.Button.Navigation.Tinted" parent="Widget.AppCompat.Toolbar.Button.Navigation">
<item name="tint">@color/color_white</item>
</style>
答案 16 :(得分:0)
简单无忧
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:titleTextColor="@color/white"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.AppBarLayout>
<include layout="@layout/testing" />
</android.support.design.widget.CoordinatorLayout>
答案 17 :(得分:-1)
如果您想用白色系统背景色,则可以使用此代码
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:elevation="0dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar_notification"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"
app:contentInsetStartWithNavigation="0dp">
<include layout="@layout/action_bar_notification" />
</androidx.appcompat.widget.Toolbar>
</com.google.android.material.appbar.AppBarLayout>
注意:- android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
是关键
粘贴在您要在活动中显示操作栏上的后退按钮的位置
final Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar_notification);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setDisplayShowHomeEnabled(false);