我正在为我的应用程序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