Змініть колір панелі інструментів в Appcompat 21


93

Я тестую нові функції Appcompat 21 Material Design. Тому я створив Панель інструментів, як це:

<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/activity_my_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:theme="@style/ThemeOverlay.AppCompat.ActionBar"/>

і включив його до мого основного файлу макета.

Тоді я встановив його як supportActionBar так:

Toolbar toolBar = (Toolbar)findViewById(R.id.activity_my_toolbar);
setSupportActionBar(toolBar);

Це працює, але я якось не можу зрозуміти, як налаштувати панель інструментів. Він сірий, а текст на ньому чорний. Як мені змінити колір тла та тексту?

Я пройшов ці інструкції:

http://android-developers.blogspot.de/2014/10/appcompat-v21-material-design-for-pre.html

Що я спостерігав за зміною кольорів?

 <style name="AppTheme" parent="Theme.AppCompat.Light">
    <item name="android:windowActionBar" tools:ignore="NewApi">false</item>
    <item name="windowActionBar">false</item>
</style>

РЕДАГУВАТИ :

Я зміг змінити колір тла, додавши до теми наступні рядки коду:

<item name="colorPrimary">@color/actionbar</item>
<item name="colorPrimaryDark">@color/actionbar_dark</item>

Але вони не вплинуть на колір тексту. Чого мені не вистачає? Замість чорного тексту та чорної кнопки меню, я волію білий текст та білі кнопки меню:

введіть тут опис зображення


як виглядає ваша тема для діяльності? ти встановив там свій колір для Панелі інструментів, як слід?
tyczj

@tyczj Я додаю тему до свого допису
user2410644

добре добре, є відповідь, ти не встановлюєш свої кольори
tyczj

@tyczj, Так, я знову відредагував свою публікацію, додав основний і основний темний кольори, але який атрибут змінює колір тексту?
user2410644

Відповіді:


185

знову це все у наведеному вами посиланні

щоб змінити текст на білий, потрібно лише змінити тему.

використовувати цю тему

<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/activity_my_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>

4
Так, просто помітив те саме, раптом заплутало те, що на темній панелі дій був світлий текст, а на світлій панелі дій темний текст ... Дякую!
user2410644

4
Я зробив так, але все-таки отримав чорний кольоровий шрифт, чи щось мені не вистачало?
Аліхандро

6
Отже, схоже, що @ style / ThemeOverlay.AppCompat.Dark.ActionBar у додатку: тема змінює текст панелі інструментів на білий, а @ style / ThemeOverlay.AppCompat.Light - на чорний. Колір фону вибрано з атрибута android: background. Тоді як у додатку: popupTheme: @ style / ThemeOverlay.AppCompat.Dark надає білий текст і чорний фон, а @ style / ThemeOverlay.AppCompat.Light - чорний текст і білий фон. gist.github.com/mnemonicflow/7cba09f6461ec86b22b7
bitek

1
Дякую! : D Google справді заплутався зі стилем панелі інструментів на android. Той факт, що це питання має 50 голосів проти і 22 пуска, є підтвердженням цього.
FRR

1
Якщо заголовок все ще залишається чорним після встановлення стилів. Переконайтеся, що ви продовжуєте AppCompatActivityзамість Activity.
stefana

60

ОНОВЛЕННЯ 12.11.2019: Бібліотека компонентів матеріалів

За допомогою компонентів матеріалу та бібліотек Androidx ви можете використовувати:

  • android:backgroundатрибут в макеті:

    <com.google.android.material.appbar.MaterialToolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
  • застосувати стиль за замовчуванням: style="@style/Widget.MaterialComponents.Toolbar.Primary"або налаштувати стиль, що успадковується від нього:

    <com.google.android.material.appbar.MaterialToolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        style="@style/Widget.MaterialComponents.Toolbar.Primary"
  • замінити колір за замовчуванням, використовуючи android:themeатрибут:

    <com.google.android.material.appbar.MaterialToolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:theme="@style/MyThemeOverlay_Toolbar"

з:

  <style name="MyThemeOverlay_Toolbar" parent="ThemeOverlay.MaterialComponents.Toolbar.Primary">
    <item name="android:textColorPrimary">....</item>
    <item name="colorPrimary">@color/.....
    <item name="colorOnPrimary">@color/....</item>
  </style>

СТАРИЙ: Бібліотеки підтримки:
Ви можете використовувати app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"тему, як запропоновано в інших відповідях, але ви також можете використовувати таке рішення:

<android.support.v7.widget.Toolbar
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    style="@style/HeaderBar"
    app:theme="@style/ActionBarThemeOverlay"
    app:popupTheme="@style/ActionBarPopupThemeOverlay"/>

І ви можете повністю контролювати свої елементи інтерфейсу користувача за допомогою таких стилів:

<style name="ActionBarThemeOverlay" parent="">
    <item name="android:textColorPrimary">#fff</item>
    <item name="colorControlNormal">#fff</item>
    <item name="colorControlHighlight">#3fff</item>
</style>

<style name="HeaderBar">
    <item name="android:background">?colorPrimary</item>
</style>

<style name="ActionBarPopupThemeOverlay" parent="ThemeOverlay.AppCompat.Light" >
    <item name="android:background">@android:color/white</item>
    <item name="android:textColor">#000</item>
</style>

Для мене це не працює. Спливаюче меню все ще є чорним фоном з білим текстом
Sunkas,

1
Не корисно. Для цього потрібен мінімальний рівень API 21
Вайбхав Гупта,

3
@VaibhavGupta Appcompat вимагає minSdk = 7 не 21.
Габріеле Маріотті

10

Гей, якщо ви хочете застосувати тему Material лише для android 5.0, тоді ви можете додати цю тему в неї

<style name="AppHomeTheme" parent="@android:style/Theme.Material.Light">

        <!-- customize the color palette -->
        <item name="android:colorPrimary">@color/blue_dark_bg</item>
        <item name="android:colorPrimaryDark">@color/blue_status_bar</item>
        <item name="android:colorAccent">@color/blue_color_accent</item>
        <item name="android:textColor">@android:color/white</item>
        <item name="android:textColorPrimary">@android:color/white</item>
        <item name="android:actionMenuTextColor">@android:color/black</item>
    </style> 

Тут нижче рядок відповідає за колір тексту панелі дій із дизайну матеріалів.

<item name="android:textColorPrimary">@android:color/white</item>

6

Ви можете динамічно встановити власний колір елемента панелі інструментів , створивши власний клас панелі інструментів:

package view;

import android.app.Activity;
import android.content.Context;
import android.graphics.ColorFilter;
import android.graphics.PorterDuff;
import android.graphics.PorterDuffColorFilter;
import android.support.v7.internal.view.menu.ActionMenuItemView;
import android.support.v7.widget.ActionMenuView;
import android.support.v7.widget.Toolbar;
import android.util.AttributeSet;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AutoCompleteTextView;
import android.widget.EditText;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.TextView;

public class CustomToolbar extends Toolbar{

    public CustomToolbar(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        // TODO Auto-generated constructor stub
    }

    public CustomToolbar(Context context, AttributeSet attrs) {
        super(context, attrs);
        // TODO Auto-generated constructor stub
    }

    public CustomToolbar(Context context) {
        super(context);
        // TODO Auto-generated constructor stub
        ctxt = context;
    }

    int itemColor;
    Context ctxt;

    @Override 
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        Log.d("LL", "onLayout");
        super.onLayout(changed, l, t, r, b);
        colorizeToolbar(this, itemColor, (Activity) ctxt);
    } 

    public void setItemColor(int color){
        itemColor = color;
        colorizeToolbar(this, itemColor, (Activity) ctxt);
    }



    /**
     * Use this method to colorize toolbar icons to the desired target color
     * @param toolbarView toolbar view being colored
     * @param toolbarIconsColor the target color of toolbar icons
     * @param activity reference to activity needed to register observers
     */
    public static void colorizeToolbar(Toolbar toolbarView, int toolbarIconsColor, Activity activity) {
        final PorterDuffColorFilter colorFilter
                = new PorterDuffColorFilter(toolbarIconsColor, PorterDuff.Mode.SRC_IN);

        for(int i = 0; i < toolbarView.getChildCount(); i++) {
            final View v = toolbarView.getChildAt(i);

            doColorizing(v, colorFilter, toolbarIconsColor);
        }

      //Step 3: Changing the color of title and subtitle.
        toolbarView.setTitleTextColor(toolbarIconsColor);
        toolbarView.setSubtitleTextColor(toolbarIconsColor);
    }

    public static void doColorizing(View v, final ColorFilter colorFilter, int toolbarIconsColor){
        if(v instanceof ImageButton) {
            ((ImageButton)v).getDrawable().setAlpha(255);
            ((ImageButton)v).getDrawable().setColorFilter(colorFilter);
        }

        if(v instanceof ImageView) {
            ((ImageView)v).getDrawable().setAlpha(255);
            ((ImageView)v).getDrawable().setColorFilter(colorFilter);
        }

        if(v instanceof AutoCompleteTextView) {
            ((AutoCompleteTextView)v).setTextColor(toolbarIconsColor);
        }

        if(v instanceof TextView) {
            ((TextView)v).setTextColor(toolbarIconsColor);
        }

        if(v instanceof EditText) {
            ((EditText)v).setTextColor(toolbarIconsColor);
        }

        if (v instanceof ViewGroup){
            for (int lli =0; lli< ((ViewGroup)v).getChildCount(); lli ++){
                doColorizing(((ViewGroup)v).getChildAt(lli), colorFilter, toolbarIconsColor);
            }
        }

        if(v instanceof ActionMenuView) {
            for(int j = 0; j < ((ActionMenuView)v).getChildCount(); j++) {

                //Step 2: Changing the color of any ActionMenuViews - icons that
                //are not back button, nor text, nor overflow menu icon.
                final View innerView = ((ActionMenuView)v).getChildAt(j);

                if(innerView instanceof ActionMenuItemView) {
                    int drawablesCount = ((ActionMenuItemView)innerView).getCompoundDrawables().length;
                    for(int k = 0; k < drawablesCount; k++) {
                        if(((ActionMenuItemView)innerView).getCompoundDrawables()[k] != null) {
                            final int finalK = k;

                            //Important to set the color filter in seperate thread, 
                            //by adding it to the message queue
                            //Won't work otherwise. 
                            //Works fine for my case but needs more testing

                            ((ActionMenuItemView) innerView).getCompoundDrawables()[finalK].setColorFilter(colorFilter);

//                              innerView.post(new Runnable() {
//                                  @Override
//                                  public void run() {
//                                      ((ActionMenuItemView) innerView).getCompoundDrawables()[finalK].setColorFilter(colorFilter);
//                                  }
//                              });
                        }
                    }
                }
            }
        }
    }



}

потім зверніться до нього у своєму файлі макета. Тепер ви можете встановити власний колір за допомогою

toolbar.setItemColor(Color.Red);

Джерела:

Я знайшов інформацію для цього тут: Як динамічно змінювати колір значків панелі інструментів Android

а потім я відредагував його, вдосконалив і розмістив тут: GitHub: AndroidDynamicToolbarItemColor


5

Це те, що відоме як DarkActionBar, що означає, що для отримання бажаного стилю вам слід використовувати наступну тему:

<android.support.v7.widget.Toolbar  
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:minHeight="@dimen/triple_height_toolbar"
    app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

2

Ви можете змінити колір тексту на панелі інструментів, виконавши такі дії:

<item name="android:textColorPrimary">#FFFFFF</item>
<item name="android:textColor">#FFFFFF</item>

2

Досягніть цього, використовуючи наступне toolbar:

<android.support.v7.widget.Toolbar
        android:id="@+id/base_toolbar"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:minHeight="?attr/actionBarSize"
        android:background="@color/colorPrimary"
        app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>

1

Спробуйте це у вашому styles.xml:

colorPrimary буде кольором панелі інструментів.

<resources>

<style name="AppTheme" parent="Theme.AppCompat">
    <item name="colorPrimary">@color/primary</item>
    <item name="colorPrimaryDark">@color/primary_pressed</item>
    <item name="colorAccent">@color/accent</item>
</style>

Ви, до речі, побудували це в Eclipse?


1

я вирішив це питання після подальшого вивчення ...

для Api21 та більше

   <item name="android:textColorPrimary">@color/white</item>

для нижчих версій використовуйте

   <item name="actionMenuTextColor">@color/white</item>

1

Якщо ви хочете змінити колір панелі інструментів у всій програмі, скористайтесь стилем.xml. Взагалі, я уникаю зміни компонентів інтерфейсу користувача в моєму коді Java, якщо не намагаюся щось робити програмно. Якщо це одноразово, тоді ви повинні робити це в xml, щоб зробити ваш код чистішим. Ось як виглядатиме ваш styles.xml:

    <!-- Base application theme. -->
<style name="YourAppName.AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Color Primary will be your toolbar color -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <!-- Color Primary Dark will be your default status bar color -->
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
</style>

Переконайтеся, що ви використовуєте вказаний вище стиль у своєму AndroidManifext.xml як такий:

    <application
        android:theme="@style/YourAppName.AppTheme">
    </application>

Я хотів різні кольори панелі інструментів для різних видів діяльності. Тож я використав стилі знову так:

    <style name="YourAppName.AppTheme.Activity1">
    <item name="colorPrimary">@color/activity1_primary</item>
    <item name="colorPrimaryDark">@color/activity1_primaryDark</item>
</style>

<style name="YourAppName.AppTheme.Activity2">
    <item name="colorPrimary">@color/activity2_primary</item>
    <item name="colorPrimaryDark">@color/activity2_primaryDark</item>
</style>

знову застосуємо стилі до кожної діяльності у вашому AndroidManifest.xml як такі:

<activity
    android:name=".Activity2"
    android:theme="@style/YourAppName.AppTheme.Activity2"
</activity>

<activity
    android:name=".Activity1"
    android:theme="@style/YourAppName.AppTheme.Activity1"
</activity>

0

Для людей, які використовують AppCompatActivity на панелі інструментів як білий фон. Використовуйте цей код.

Оновлено: грудень 2017 р

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:theme="@style/ThemeOverlay.AppCompat.Light">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar_edit"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        app:popupTheme="@style/AppTheme.AppBarOverlay"
        app:title="Edit Your Profile"/>

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

1
У чому різниця із панеллю інструментів за замовчуванням?
CoolMind
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.