0

レイアウトを共通のデザインを持つ 2 つの部分に分けたいと考えています。レイアウトの向きは水平で、そのレイアウトの 2 つのレイアウトが必要です。どうすればそれを行うことができますか。ここに私の XML があります。

4

4 に答える 4

1

以下のコードをコピーして xml ファイルに貼り付け、必要に応じて変更を加えます。必要に応じてヘルプを求めることができます

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

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:layout_weight="1" >
    <Button 
          android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />

    <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />

</LinearLayout>

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="461dp"
    android:layout_weight="1.00"
    android:orientation="vertical" >

        <Button 
          android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

        <Button
            android:id="@+id/button4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />

        <Button
            android:id="@+id/button5"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />

        <Button
            android:id="@+id/button6"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />

</LinearLayout>

于 2013-08-01T06:24:40.467 に答える
0

ID を使用して実行時にレイアウト オブジェクトの参照を取得し、コード内の要件の書き込み条件に応じて、非表示のレイアウトを表示します。

于 2013-08-01T06:10:19.653 に答える