Android GridView中的列大小

时间:2012-12-29 07:26:54

标签: android

如何在Android GridView中执行不同大小的列。 我需要一个长字段用于名称,九个短字用于数字。 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>

1 个答案:

答案 0 :(得分:1)

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