GridView里面的CardView点击效果

时间:2014-12-27 16:05:35

标签: android onclick android-gridview effects android-cardview

我有以下Custom GridView:

<android.support.v7.widget.CardView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
app:cardCornerRadius="2dp"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">

  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:padding="5dp">

    <ImageView
        android:id="@+id/grid_image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_weight="4"/>
    <TextView
        android:id="@+id/grid_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"/>
  </LinearLayout>
</android.support.v7.widget.CardView>

现在我有一个带有CardView样式的GridView,但是当我点击任何项目时没有点击效果(我想要获得android 5.0的cicle点击效果或至少点击的任何效果!)和我真的不知道怎么做到这一点。任何帮助将不胜感激!

干杯。

1 个答案:

答案 0 :(得分:1)

得到答案,需要添加:setDrawSelectorOnTop(true) gridviews选择器可以工作,但是它正在我的cardview后面绘制,所以我只需要在这个代码上绘制它......

这是帮助我的原因: Android drawSelectorOnTop with GridView