1

如何在 Android GridView 中做不同大小的列。我需要一个长的名字和九个短的数字。网格视图 XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <GridView
        android:id="@+id/gridView1"
        android:layout_width="match_parent"
        android:layout_height="700dp"
        android:numColumns="10" >
    </GridView>
</RelativeLayout>

项目 XML:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

 android:layout_width="match_parent"
 android:layout_height="match_parent"

 android:orientation="vertical">

<EditText
    android:id="@+id/editText1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
   />

</LinearLayout>
4

1 回答 1

1

做一件事,采用一个具有父线性布局的xml,在线性布局中采用子线性布局,在每个线性布局中我们可以设计您需要的东西,希望这对您有所帮助。

于 2012-12-29T07:36:55.713 回答