更改Android AppBar上的颜色按钮

时间:2016-11-07 03:33:31

标签: android

如何更改AppBar上按钮的颜色?,在我的情况下是后退按钮,默认颜色为白色

enter image description here

但我得到了我的想法,我想用强调颜色改变黑色到白色,但仍然没有改变我。 我正在使用工具栏

<?xml version="1.0" encoding="utf-8"?>

<android.support.design.widget.AppBarLayout
    android:id="@+id/toolbar1"
    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="wrap_content"
        android:background="?attr/colorPrimary"
        android:elevation="4dp"
        app:layout_scrollFlags="scroll|enterAlways" />

    <android.support.design.widget.TabLayout
        android:id="@+id/tab"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/toolbar1"
        android:background="?attr/colorPrimary"
        android:elevation="4dp"
        android:theme="@style/toolBarTheme" />

</android.support.design.widget.AppBarLayout>

<android.support.v4.view.ViewPager
    android:id="@+id/viewPager"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior" />

1 个答案:

答案 0 :(得分:0)

在新版本的android中使用了按钮的材质设计,你可以更改颜色过滤器并将其设置为后退按钮

  final Drawable backArrow = getResources().getDrawable(R.drawable.abc_ic_ab_back_mtrl_am_alpha);
    backArrow.setColorFilter(getResources().getColor(R.color.grey), PorterDuff.Mode.SRC_ATOP);
    getSupportActionBar().setHomeAsUpIndicator(backArrow);