0

这是我的第一个问题,所以如果我问错了,请指导我。我想用一个表格来显示我的游戏中的角色数量,这些角色有图片、标题和简短描述。单击一个角色后,用户将被转移到另一个视图,在那里他可以看到有关该角色的更多详细信息。

4

1 回答 1

1

假设您的布局可能包含在with和TextView(Title)的第一行中。您可以使用并根据您的要求TableImageView(Your Picture)TextView(Brief Description)android:weightSumandroid:layout_weightTableRow

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">

<TableLayout 
    android:layout_height="fill_parent"
    android:layout_width="wrap_content"
    android:weightSum="3"
 >

    <TableRow 
        android:layout_height="fill_parent"
        android:layout_width="fill_parent"
        android:layout_weight="1"
        >
        <TextView 
        android:layout_height="fill_parent"
        android:layout_width="fill_parent"
        android:layout_span="2"
        android:text="Title"
            />
    </TableRow>

    <TableRow 
        android:layout_height="fill_parent"
        android:layout_width="fill_parent"
        android:layout_weight="2"
        >
        <ImageView 
        android:layout_height="fill_parent"
        android:layout_width="fill_parent"
        android:src="drawable/...png"
            />
       <TextView 
        android:layout_height="fill_parent"
        android:layout_width="fill_parent"
        android:text="Brief Description"
            />
    </TableRow>
  </TableLayout>
  </LinearLayout>
于 2013-09-07T06:09:39.763 回答