gpt4 book ai didi

android - ?安卓 :attr/selectableItemBackground not working on white windowBackground

转载 作者:太空宇宙 更新时间:2023-11-03 13:15:36 26 4
gpt4 key购买 nike

我想用

?android:attr/selectableItemBackground

对于我的回收站 View 中的项目。不幸的是它不工作。我的 styles.xml 文件中有这一行:

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

如果没有这条线,我会看到纹波,这意味着背景操作系统因为白色的 windowBackground 而无法工作。如何强制在我的白色背景上显示 ripppe 效果?

这是 recyclerview 项目的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:id="@+id/brand_row"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:background="?android:attr/selectableItemBackground"
android:orientation="vertical">

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginLeft="@dimen/activity_horizontal_margin"
android:layout_weight="1"
android:gravity="center_vertical"
android:orientation="vertical">

<TextView
android:id="@+id/name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:singleLine="true"
android:textColor="@color/modelTitelColor"
android:textStyle="bold"/>

<TextView
android:id="@+id/numbers"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:singleLine="true"
android:textColor="@color/cardview_background"
android:textStyle="normal"/>
</LinearLayout>


<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/divider"/>
</LinearLayout>

我的 minSdkVersion 是 14

最佳答案

在我使用的 styles.xml 中

Theme.AppCompat.NoActionBar 

作为父主题。将其更改为

style name="CustomMaterialTheme" parent="Theme.AppCompat.Light.NoActionBar"

解决问题。现在我可以看到效果了。

关于android - ?安卓 :attr/selectableItemBackground not working on white windowBackground,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36711400/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com