[android] 툴바 홈 아이콘 색상을 변경하는 방법

android.support.v7.widget.Toolbar를 사용하고 있으며이 게시물 에서 햄버거 아이콘의 색상을 흰색으로 변경하는 방법을 배웠지 만 전화를 걸면 위쪽 / 뒤로 화살표가 어두운 색으로 유지됩니다.

setDisplayHomeAsUpEnabled(true);

화살표도 흰색으로 만들 수 있습니까?

다음은 setDisplayHomeAsUpEnabled ()를 호출 할 때 내 도구 모음의 모습입니다.

여기에 이미지 설명 입력

… 그리고 다음은 내 styles.xml 파일의 관련 부분입니다.

<style name="AppTheme" parent="Theme.AppCompat.NoActionBar">
    <item name="colorPrimary">@color/primary</item>
    <item name="colorPrimaryDark">#194C5F</item>
    <item name="colorAccent">@color/accent</item>
    <item name="drawerArrowStyle">@style/WhiteDrawerIconStyle</item>
</style>

    <style name="WhiteDrawerIconStyle" parent="Widget.AppCompat.DrawerArrowToggle">
        <item name="spinBars">true</item>
        <item name="color">@android:color/white</item>
    </style>



답변

styles.xml을 편집하여 해결했습니다.

<style name="ToolbarColoredBackArrow" parent="AppTheme">
    <item name="android:textColorSecondary">INSERT_COLOR_HERE</item>
</style>

… 활동의 도구 모음 정의에서 스타일을 참조합니다.

<LinearLayout
    android:id="@+id/main_parent_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <android.support.v7.widget.Toolbar
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/toolbar"
        app:theme="@style/ToolbarColoredBackArrow"
        app:popupTheme="@style/AppTheme"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="?attr/actionBarSize"
        android:background="?attr/colorPrimary"/>


답변

여기에 당신이 찾고있는 것이 있습니다. 그러나 이것은 또한 radioButton 등의 색상을 변경합니다. 따라서 테마를 사용하는 것이 좋습니다.

<item name="colorControlNormal">@color/colorControlNormal</item>


답변

이 코드를 사용하여 프로그래밍 방식으로 해결했습니다.

final Drawable upArrow = getResources().getDrawable(R.drawable.abc_ic_ab_back_mtrl_am_alpha);
upArrow.setColorFilter(Color.parseColor("#FFFFFF"), PorterDuff.Mode.SRC_ATOP);
getSupportActionBar().setHomeAsUpIndicator(upArrow);

개정 1 :

API 23 (Marshmallow)부터 드로어 블 리소스 abc_ic_ab_back_mtrl_am_alphaabc_ic_ab_back_material.


답변

이 대답은 너무 늦었을 수도 있지만 여기에 내가하는 방법이 있습니다. 도구 모음에 스타일을 지정하면 트릭을 수행 할 수 있습니다. 다음 코드로 toolbar.xml을 만듭니다.

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:layout_alignParentTop="true"
android:layout_gravity="bottom"
local:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
local:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

및 styles.xml

<style name="AppBaseTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!--
    -->
</style>

<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
    <item name="windowNoTitle">true</item>
    <item name="windowActionBar">false</item>
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
</style>

마지막으로 레이아웃 안에 툴바를 포함합니다.

<include
        android:id="@+id/toolbar"
        layout="@layout/toolbar" />


답변

툴바 테마를 ThemeOverlay.AppCompat.Dark로 변경하십시오.

<?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:id="@+id/navigation"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/colorPrimary"
    android:orientation="vertical"
    app:theme="@style/ThemeOverlay.AppCompat.Dark">

</android.support.v7.widget.Toolbar>

활동에서 설정

mToolbar = (Toolbar) findViewById(R.id.navigation);
setSupportActionBar(mToolbar);


답변

   <!-- ToolBar -->
    <style name="ToolBarTheme.ToolBarStyle"    parent="ThemeOverlay.AppCompat.Dark.ActionBar">
        <item name="android:textColorPrimary">@android:color/white</item>
        <item name="android:textColor">@color/white</item>
        <item name="android:textColorPrimaryInverse">@color/white</item>
    </style>

게시하기에 너무 늦었 기 때문에 뒤로 버튼의 색상을 변경했습니다.


답변

이 작업을 수행하는 더 쉬운 방법이 있습니다.

drawerToggle = new ActionBarDrawerToggle(this, drawer, toolbar, R.string.open_drawer, R.string.close_drawer);
arrow = drawerToggle.getDrawerArrowDrawable();

그리고

arrow.setColor(getResources().getColor(R.color.blue);