3

我正在使用RecyclerViewwithGridLayoutManager并动态添加具有此 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只有在双击或长按时才能看到项目的点击效果。

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

4

2 回答 2

3

通过将背景设置为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>
于 2015-08-31T13:21:07.670 回答
0

android:focusable="false"
android:focusableInTouchMode="false"

在您的 CardView 上

于 2016-05-21T14:38:11.240 回答