gpt4 book ai didi

android:background selectableItemBackground 不工作

转载 作者:行者123 更新时间:2023-11-29 15:40:34 26 4
gpt4 key购买 nike

我尝试在 recyclerview 中使用 selectableItemBackground,我测试了一个简单的演示,它正在运行。

这是布局和样式:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?android:attr/selectableItemBackground">

<ImageView
android:id="@+id/imageView"
android:layout_width="100dp"
android:layout_height="100dp"
app:srcCompat="@mipmap/ic_launcher" />

</LinearLayout>

</RelativeLayout>

风格:

 <!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.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>

当我测试另一个项目时,它不起作用,我正在寻找一些解决方案,其中一个解决方案可能是样式。

但是解决方案风格是Theme.AppCompat.Light.NoActionBar,我也用过。

这是我的项目布局,谁能告诉我为什么?

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?android:attr/selectableItemBackground">

<ImageView
android:id="@+id/image"
android:layout_width="15dp"
android:layout_height="15dp"
android:layout_marginLeft="5dp"
android:layout_marginTop="0dp"
android:src="@drawable/pink_circle" />

</RelativeLayout>

</RelativeLayout>

风格:

 <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@android:color/holo_blue_dark</item>
</style>

最佳答案

背景的动画部分要求您的元素是可点击的。设置 android:clickable="true"

关于android:background selectableItemBackground 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41278665/

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