在我的应用中实现深色主题;不同活动的工具栏中显示不同的颜色

问题描述 投票:0回答:1

我想在我的应用中实现深色主题;在mainactivity中有一个工具栏,在其他活动中有一个工具栏。我在values / styles.xml中实现了深色主题,如下所示:

<resources>
    <style name="AppTheme" parent="Theme.MaterialComponents">
        <item name="colorPrimary">@color/primary_material_dark</item>
        <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
        <item name="colorAccent">@color/material_deep_teal_200</item>
    </style>

    <style name="AppTheme.NoActionBar">
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
    </style>

    <style name="AppTheme.AppBarOverlay"parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
    <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
</resources>

[完成此操作后,我的应用程序变成了黑暗主题,但主要活动的工具栏颜色不同,其他活动的操作栏颜色不同。而且,在进行另一项活动时也会眨眼。

在我的主要活动中,有recyclerview制作的cardview;从这张图片开始,我想实现深色主题。Dark Theme

我不知道为什么从主要活动转到其他活动(其他活动具有操作栏)时工具栏的颜色会改变,而从一个活动转到另一个活动时背景却闪烁。

我也想将cardview的布局颜色的整个背景的颜色设置为给定的图片。我尝试了很多次,但是没有发生背景闪烁:(

顺便说一下,这是我的工具栏的xml(app_bar_main.xml):

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
    ..
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <com.google.android.material.appbar.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <androidx.appcompat.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
             />

    </com.google.android.material.appbar.AppBarLayout>

    <include layout="@layout/content_main" />

    <com.google.android.material.floatingactionbutton.FloatingActionButton.../>

</androidx.coordinatorlayout.widget.CoordinatorLayout>
android styles android-dark-theme
1个回答
0
投票

用途:

<com.google.android.material.appbar.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        style="@style/MyAppBar"
        ..>

其中:

<style name="MyAppBar" parent="@style/Widget.Design.AppBarLayout">
    <item name="android:background">?attr/colorPrimary</item>
    <item name="android:elevation">xxdp</item>
    ...
</style>
© www.soinside.com 2019 - 2024. All rights reserved.