导航抽屉和底栏

时间:2014-11-30 07:49:23

标签: android navigation-drawer

我已经实现了导航抽屉和底部导航栏。

我的问题是导航抽屉的高度与内容框架高度一样高。因此,当导航抽屉打开时,底部导航栏将部分隐藏,就像主布局的内容一样。

我尝试了以下方法来克服这个问题:

  • 获取底部导航栏的高度。
  • 将导航栏的高度设置为(抽屉的高度 - 栏的高度)

但这样抽屉不知道高度的变化。

这是我想要完成的事情:

enter image description here

1 个答案:

答案 0 :(得分:4)

我们的布局是这样的:

<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">
        <!-- The main content view -->

     <!-- The navigation drawer -->

   </android.support.v4.widget.DrawerLayout>

   <!-- Your bottom bar --!>
</RelativeLayout>