我的布局有两个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 我该怎么做?
答案 0 :(得分:2)
您无法控制菜单选项的布局。唯一的选择是为您想要实现的目标定义自定义菜单。