我们已经实施了DrawerLayout
这是正常的。但是我们想要一个固定的菜单选项(注销)必须位于屏幕的底部,并在抽屉打开时显示。页脚不是一个选项,因为它总是显示在菜单列表中的最后一项,而我们总是希望它在菜单的底部。我们已经能够使用在onDrawerOpened()
中显示的按钮具有相对布局,但是当抽屉成为最顶层时,绘图的打开将关闭该按钮。请求焦点没有帮助,因为抽屉打开动画即使在焦点要求之后也会发生
无论如何,我们正在寻找:
在抽屉打开后显示菜单。
public void onDrawerOpened(View drawerView) {
getActionBar().setTitle(getTitle());
invalidateOptionsMenu(); // creates call to onPrepareOptionsMenu();
logoutButton.setVisibility(View.VISIBLE);
logoutButton.setFocusable(true);
logoutButton.requestFocus();
logoutButton.requestLayout();
//drawerLayout.addView(logoutView, 0);
}
答案 0 :(得分:1)
你试图使用RelativeLayout给出意想不到的结果,因为它不在内容框架内。这是我做的:
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<RelativeLayout
android:id="@+id/relative_layout"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start" >
<ListView
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:background="#111"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" >
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?android:attr/activatedBackgroundIndicator"
android:layout_alignParentBottom="true"
android:id="@+id/holder" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="?android:attr/activatedBackgroundIndicator"
android:gravity="center_vertical"
android:id="@+id/logout_item"
android:minHeight="?android:attr/listPreferredItemHeightSmall"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:text="@string/logout"
android:textAppearance="?android:attr/textAppearanceListItemSmall"
android:textColor="#fff" />
</FrameLayout>
</RelativeLayout>
</RelativeLayout>
</android.support.v4.widget.DrawerLayout>
不要忘记运行HierarchyViewer来摆脱不必要的ViewGroup
。