如何在自定义导航抽屉上设置布局

时间:2016-05-17 20:20:00

标签: android android-navigation-drawer

我想实现一个自定义布局,如导航抽屉,相同的行为。 我无法做到这一点,因为导航抽屉使用带有项目的菜单,我需要个性化的布局。

1 个答案:

答案 0 :(得分:1)

您可以使用DrawerLayout作为您的rootview。它需要有2个子视图:

  • 第一个是抽屉下的主要布局
  • 第二个是抽屉本身。它可以是你想要的任何视图。

示例:

<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 -->
    <FrameLayout
        android:id="@+id/content_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
    <!-- The navigation drawer -->
    <ListView android:id="@+id/left_drawer"
        android:layout_width="240dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:choiceMode="singleChoice"
        android:divider="@android:color/transparent"
        android:dividerHeight="0dp"
        android:background="#111"/>
</android.support.v4.widget.DrawerLayout>

您可以将ListView替换为您的个性化布局。