0

私のレイアウトには2つのlinearlayoutが含まれています。
以下のように: 

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/LinearLayout1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <LinearLayout
        android:id="@+id/l1"
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:gravity="right"
        android:orientation="vertical" >

        <Button
            android:id="@+id/b1"
            android:layout_width="18dp"
            android:layout_height="match_parent"
            android:text=" ﹒﹒﹒"
            android:textSize="20dp" />

    </LinearLayout>

    <LinearLayout
        android:id="@+id/l2"
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="#000000"
        android:orientation="vertical" >

    </LinearLayout>

</LinearLayout>

l1とl2があります。
メニューバーをl1のみに属し、l1に表示させたい。
ただし、クロスオーバーl1とl2は表示されません。
どうすればいいですか?

4

1 に答える 1

2

メニューオプションのレイアウトを制御することはできません。唯一のオプションは、達成したいことに対してカスタムメニューを定義することです。

于 2012-08-13T08:00:10.517 に答える