0

以下に示すように、2つの同じサイズのビューを水平に配置し、中央に分割線を配置してレイアウトしたいと思います。どうすればこれを達成できますか?

ここに画像の説明を入力してください

4

1 に答える 1

5
<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:weightSum="2"
    android:orientation="horizontal" xmlns:android="http://schemas.android.com/apk/res/android">
    <TextView
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="fill_parent"
        android:text="A"
        />
    <View
        android:layout_width="1dp"
        android:layout_height="fill_parent"
        android:background="@android:color/black"
        />
    <TextView
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="fill_parent"
        android:text="B"
        />
</LinearLayout>
于 2012-10-04T01:13:07.287 に答える