Using LinearLayout instead of RecyclerView in DrawerLayout

ぐ巨炮叔叔 提交于 2019-12-14 03:23:11

问题


Since I'm using a fixed menu for the navigation drawer I tried to use LinearLayout in DrawerLayout's second child instead of RecyclerView/ListView to make it easier to code. But the result is a full-screen linearlayout. Is there any way to use a regular view (like linearlayout) in DrawerLayout?

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">

<include
    layout="@layout/app_bar_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />
<LinearLayout
    android:orientation="vertical"
    android:layout_width="wrap_content"
    android:layout_height="match_parent">
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello world"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Bye world"/>
</LinearLayout>


回答1:


Any View can act as a drawer in a DrawerLayout. For the DrawerLayout to recognize a View as a drawer, it must have a layout_gravity attribute set to left/right or start/end, depending on which vertical edge you want the drawer attached to.

The drawer's layout_height is normally match_parent, so that the drawer spans the full height of the DrawerLayout, and its layout_width is normally an exact measure - e.g., 240dp - to keep a consistent width, independent of its contents.

Additionally, the drawer View must be listed last within the DrawerLayout to maintain the correct z-order, otherwise it will be covered by the content View and won't receive click events.



来源:https://stackoverflow.com/questions/35201945/using-linearlayout-instead-of-recyclerview-in-drawerlayout

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!