我想实现一个自定义布局,如导航抽屉,相同的行为。 我无法做到这一点,因为导航抽屉使用带有项目的菜单,我需要个性化的布局。
答案 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
替换为您的个性化布局。