1

主にテキストビューを表示する詳細ビューを作成しようとしています。グリッドビューが理想的だと思いますが、下位互換性のために 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

GridLayoutAPI 14(Android 4.0)で導入されたを参照していると思います。GridLayoutただし、最新バージョンのサポートライブラリには、アプリケーションに組み込んでAPI 7(Android 2.1)と互換性を持たせるために使用できるライブラリプロジェクトが含まれています。

行を一方から他方に非対称にしようとしているので、GridLayoutそれでも最善の(唯一の)オプションであると思います。

サポートライブラリページへのリンクは次のとおりです。

HTH

于 2012-06-21T02:27:26.087 に答える