0

テキストとテーブルを含むAndroidアプリ用のLinearLayoutを作成したかったのです。TextViewは表示されますが、TableLayoutは非表示になります。

何が問題なのかわからない。

これが私のレイアウトのコードです:

<LinearLayout
    android:id="@+id/ListWrapper"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="center_vertical"
    android:orientation="horizontal"
    android:layout_gravity="top"
    android:background="@color/listBackground" >

    <TextView
        android:id="@+id/aboutScreenMainText"
        android:text="@string/helpPage.mainText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="18dp"
        android:layout_marginTop="5dp"
        android:layout_marginLeft="5dp"
        android:layout_gravity="top"
        android:textColor="#000" />

    <TableLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <TableRow
            android:layout_width="fill_parent"
            android:layout_height="50dp">
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/helpPage.addNoteText" />
            <View
                android:layout_width="fill_parent"
                android:layout_height="1dp"
                android:background="@color/mainTextColor">
             </View>
        </TableRow>   
    </TableLayout>

</LinearLayout>
4

1 に答える 1

0

問題の解決策はとても簡単でした;)レイアウトの向きは「垂直」ではなく「水平」でした。

于 2012-08-28T16:57:12.123 に答える