Android GridView里面有不同的项目

时间:2012-07-03 00:31:21

标签: android gridview

我在here跟踪了Hello gridview教程。我想知道有没有办法在网格视图中沿着图像添加按钮?如果是这样我该怎么办?

1 个答案:

答案 0 :(得分:0)

您可以尝试这样的事情:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/RelativeLayout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <GridView xmlns:android="http://schemas.android.com/apk/res/android" 
            android:id="@+id/gridview"
            android:layout_width="fill_parent" 
            android:layout_height="300dp"
            android:columnWidth="90dp"
            android:numColumns="auto_fit"
            android:verticalSpacing="10dp"
            android:horizontalSpacing="10dp"
            android:stretchMode="columnWidth"
            android:gravity="center"  
     />

    <Button
          android:id="@+id/bAdd"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="Add RES"
          android:layout_below="@+id/gridview" />

</RelativeLayout>

希望有所帮助。