2

我们已经实施DrawerLayout了它工作正常。但是,我们想要一个固定的菜单选项(注销),它必须位于屏幕底部,并且仅在抽屉打开时显示。页脚不是一个选项,因为它总是显示为菜单列表中的最后一项,而我们总是希望它位于菜单的底部。我们已经能够与按钮进行相对布局,该按钮onDrawerOpened()在抽屉中变为最顶层时可见,但打开绘图会关闭该按钮。请求焦点无济于事,因为即使在焦点请求之后也会发生抽屉打开动画

无论如何,我们正在寻找:

  1. 如何始终在底部添加此菜单项或
  2. 在抽屉打开后显示菜单。

        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);
        }
    
4

1 回答 1

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.

于 2013-11-30T04:28:42.097 回答