1

我正在尝试创建一个详细视图来主要显示文本视图。我认为 gridview 是理想的,它似乎不适用于我使用 ActionBarSherlock 向下兼容的项目。我尝试过使用相对布局和表格布局,但我不确定如何完成我想要的。

这是我到目前为止所拥有的,但我需要使第一列的宽度不大于其中的元素,即:图像、多行文本视图等:

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/lemon" >

    <TableRow
        android:id="@+id/tableRow1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="5sp" >

        <TextView
            android:id="@+id/placard"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:textColor="#000000"
            android:textSize="24sp"
            android:textStyle="bold" />

        <TextView
            android:id="@+id/material"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:maxLines="5"
            android:padding="10sp"
            android:textColor="#0000ff"
            android:textSize="12sp"
            android:textStyle="bold" />
    </TableRow>

    <TableRow
        android:id="@+id/tableRow2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <TextView
            android:id="@+id/div_text"
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:paddingBottom="5sp"
            android:paddingLeft="10sp"
            android:paddingTop="5sp"
            android:text="@string/division"
            android:textColor="#000000"
            android:textSize="14sp" />

        <TextView
            android:id="@+id/division"
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:paddingBottom="5sp"
            android:paddingLeft="10sp"
            android:paddingTop="5sp"
            android:textColor="#0000ff"
            android:textSize="16sp"
            android:textStyle="bold" />
    </TableRow>

    <TableRow
        android:id="@+id/tableRow3"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <TextView
            android:id="@+id/hazards"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:paddingBottom="5sp"
            android:paddingLeft="10sp"
            android:paddingTop="5sp"
            android:textColor="#0000ff"
            android:textSize="14sp" />
    </TableRow>

</TableLayout>

任何建议将不胜感激。

4

1 回答 1

1

我认为您指的GridLayout是 API 14(Android 4.0)中引入的 。但是,最新版本的支持库包含一个库项目,您可以使用该项目将其合并GridLayout到您的应用程序中,并使其与 API 7 (Android 2.1) 兼容。

因为您正试图使行从一个到另一个不对称,所以我相信GridLayout可能仍然是您最好的(唯一)选择。

这是支持库页面的链接。

高温高压

于 2012-06-21T02:27:26.087 回答