Как мне преобразовать мой стиль AppTheme в компонент Material - PullRequest
0 голосов
/ 03 апреля 2020

// Это мой текущий AppTheme моего приложения. Как мне перенести мою тему AppTheme на компоненты материалов? Я перенес свой код в AndroidX.

<style name="AppBaseTheme" parent="@android:style/Theme.Light">
        <item name="android:windowActionBar">true</item>
        <item name="android:windowDisablePreview">true</item>
        <item name="android:actionBarSize">@dimen/actionbar_height</item>
        <item name="actionBarSize">@dimen/actionbar_height</item>
    </style>
    <!-- Base application theme. -->
    <style name="AppThemeMenu" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="android:windowActionBar">true</item>
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>
    <!-- Application theme. -->
    <style name="AppTheme" parent="AppBaseTheme">

1 Ответ

0 голосов
/ 03 апреля 2020

чтобы использовать компоненты материала, начните с реализации библиотеки материалов в ваших файлах gradel:

implementation 'com.google.android.material:material:1.1.0'

Затем перейдите к стилю. xml и измените родительский элемент на один из следующих Материал родителей:

Theme.MaterialComponents
Theme.MaterialComponents.NoActionBar
Theme.MaterialComponents.Light
Theme.MaterialComponents.Light.NoActionBar
Theme.MaterialComponents.Light.DarkActionBar
Theme.MaterialComponents.DayNight
Theme.MaterialComponents.DayNight.NoActionBar
Theme.MaterialComponents.DayNight.DarkActionBar 

Для получения дополнительной информации вы можете проверить эту страницу .

Например:

    <!-- Base application theme. -->
<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>
</style>

Надеюсь, это поможет! :)

...