gpt4 book ai didi

android - RecyclerView中CardView没有点击效果

转载 作者:太空狗 更新时间:2023-10-29 13:18:13 25 4
gpt4 key购买 nike

我正在将 RecyclerViewGridLayoutManager 一起使用,我动态添加具有此 xml 的新元素:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawSelectorOnTop="true">

<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/cardView"
android:layout_width="match_parent"
android:layout_height="150dp"
android:clickable="true"
android:foreground="?android:attr/selectableItemBackground"
style="@style/cardView">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center">

<ImageView
android:id="@+id/direction_list_icon"
android:layout_width="100dp"
android:layout_height="100dp"
android:src="@drawable/icon"
android:layout_gravity="center"
android:padding="8dp"
android:clickable="true" />

<TextView
android:id="@+id/direction_list_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Dummy text"
android:layout_gravity="center"
android:padding="8dp"
android:clickable="true" />

</LinearLayout>
</android.support.v7.widget.CardView>
</LinearLayout>

问题是,只有当我双击或长按时,我才会在 CardView 项上看到点击效果。

我试图在 CardView 中放置一个 LinearLayout 并使用 android:background="?android:attr/selectableItemBackground" 使其可点击但是结果保持不变

最佳答案

我已经通过将背景设置为 CardView 的根元素解决了我项目中的这个问题。在您的布局中,这应该有效:

<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/cardView"
android:layout_width="match_parent"
android:layout_height="150dp"
style="@style/cardView">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center"
android:background="?android:selectableItemBackground">

</LinearLayout>
</android.support.v7.widget.CardView>

关于android - RecyclerView中CardView没有点击效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32296759/

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