如何从主题更改 CardView 背景颜色

2024-01-12

在具有多个主题的应用程序中,如何从样式文件更改 CardView 的背景颜色?

样式.xml

<style name="AppTheme1" parent="Theme.AppCompat.Light.DarkActionBar">
        <item name="colorPrimary">@color/colorPrimaryTheme1</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDarkTheme1</item>
        <item name="colorAccent">@color/colorAccentTheme1</item>
</style>

<style name="AppTheme2" parent="Theme.AppCompat.Light.DarkActionBar">
        <item name="colorPrimary">@color/colorPrimaryTheme2</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDarkTheme2</item>
        <item name="colorAccent">@color/colorAccentTheme2</item>
</style>

<style name="AppTheme3" parent="Theme.AppCompat.Light.DarkActionBar">
        <item name="colorPrimary">@color/colorPrimaryTheme3</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDarkTheme3</item>
        <item name="colorAccent">@color/colorAccentTheme3</item>
</style>

CardView

<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/cardView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginStart="16dp"
    android:layout_marginTop="16dp"
    android:layout_marginEnd="16dp"
    android:elevation="4dp"
    app:cardCornerRadius="15dp">

我想更改每个主题的背景颜色,并且希望在 styles.xml 文件中完成此操作。


尝试下面的代码行

在 style.xml 中写入以下代码行

    <style name="CustomCardview1" parent="CardView">
          <item name="cardBackgroundColor">#F3921F</item>
          <item name="android:layout_width">match_parent</item>
          <item name="android:layout_height">wrap_content</item>
         <item name="android:layout_margin">10dp</item>
     </style>

    <style name="CustomCardview2" parent="CardView">
          <item name="cardBackgroundColor">#F3931F</item>
          <item name="android:layout_width">match_parent</item>
          <item name="android:layout_height">wrap_content</item>
         <item name="android:layout_margin">10dp</item>
     </style>

在需要卡片视图的布局中编写以下代码行

 <android.support.v7.widget.CardView
      style="@style/CustomCardview">      

希望对你有帮助

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

如何从主题更改 CardView 背景颜色 的相关文章

随机推荐