Gridview项目在点击时显示阴影

时间:2015-07-13 17:29:11

标签: android gridview android-imageview

我正在为我的应用程序dashborad使用gridview,但是当我在项目上click时,它会显示阴影。如何删除click上的showdow。

这是我的项目网格xml

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

    <ImageView
        android:id="@+id/dashboard_icon_img"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="0dp"
        android:layout_marginTop="10dp"
        android:scaleType="fitXY" />

    <TextView
        android:id="@+id/launcher_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:textSize="12sp" />

</LinearLayout>

这是我的gridview布局。

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"   
    tools:context="com.tech.reader.MainActivity$PlaceholderFragment" >

 <GridView

     android:id="@+id/dashboard_grid"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:layout_centerInParent="true"
     android:layout_margin="10dp"
     android:layout_marginTop="80dp" 
     android:numColumns="3" />    
</RelativeLayout>

这里我在点击模式下附上我的仪表板的链接图片,其中我试图解释我的问题。 dashboard

1 个答案:

答案 0 :(得分:1)

在XML布局文件的android:listSelector="#00000000"元素中使用GridView

参考at this post