Компоненты материала По умолчанию colorAccent вместо colorPrimary - PullRequest
1 голос
/ 26 января 2020

Мой AppTheme в styles.xml выглядит следующим образом:

   <style name="AppTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
        <item name="android:textColorPrimary">@color/textColorPrimary</item>
        <item name="android:windowTranslucentStatus">true</item>
        <item name="android:windowTranslucentNavigation">true</item>
    </style>

Я установил это в Манифесте как:

<application
    android:name=".MyApp"
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme"
    tools:ignore="GoogleAppIndexingWarning">

Согласно https://material.io/develop/android/components/ Цвет по умолчанию, применяемый к моим виджетам, должен быть определенным colorPrimary, но мой выбирает colorAccent в качестве цвета по умолчанию. Например, эта кнопка:

<com.google.android.material.button.MaterialButton
        android:id="@+id/loginButton"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="56dp"
        android:layout_marginEnd="56dp"
        android:text="login"
        app:cornerRadius="5dp"
        app:elevation="0dp"
        app:fontFamily="@font/gotham_bold" />

Observed behavior

Expected Behaviour

Мне не хватает определенной конфигурации c для этого проекта, чтобы эта кнопка имела кнопку показывать colorPrimary а не colorAccent?

Ответы [ 2 ]

0 голосов
/ 27 января 2020

Используйте библиотеку компонентов материала 1.1.0 или более поздней версии.

Стиль MaterialButton по умолчанию:

    <style name="Widget.MaterialComponents.Button" parent="Widget.AppCompat.Button">
        <item name="backgroundTint">@color/mtrl_btn_bg_color_selector</item>
        <!-- .... -->
    </style>

Начиная с версия 1.1.0 @color/mtrl_btn_bg_color_selector основана на ?attr/colorPrimary:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:color="?attr/colorPrimary" android:state_enabled="true"/>
  <item android:alpha="0.12" android:color="?attr/colorOnSurface"/>
</selector>

В версии 1.0.0 селектор был на основе ?attr/colorAccent:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:color="?attr/colorAccent" android:state_enabled="true"/>
  <item android:color="@color/mtrl_btn_bg_color_disabled"/>
</selector>
0 голосов
/ 26 января 2020

в этом случае я считаю, что изменился только цвет текста в вашей кнопке, он имеет значение цвета textColorPrimary. Есть вероятность, что textColorPrimary и colorAccent совпадают

...