我试图使用"列表"下面的按钮来构建导航抽屉。它从菜单文件夹中显示的项目。我试着在它下面添加linearLayout,但它不允许我使用" free"空间。 NavigationView高度为" wrap_content"。
活动主要:
<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="end">
<include
layout="@layout/app_bar_main"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:theme="@style/NavStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:layoutDirection="rtl"
android:fitsSystemWindows="false"
app:itemTextColor="@color/white"
app:itemIconTint="@color/white"
app:headerLayout="@layout/nav_header_main"
android:background="@drawable/background_menu_bar"
app:menu="@menu/activity_main_drawer"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center_horizontal"
>
<Button
android:id="@+id/android_rules_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/light_gray"
android:textColor="@color/black"
android:text="תקנון החברה"
android:textSize="15dp"
android:layout_marginTop="250dp"
android:layout_marginStart="32dp"
android:layout_marginEnd="32dp"/>
<Button
android:id="@+id/android1_about_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/light_gray"
android:textColor="@color/black"
android:text="אודותינו"
android:textSize="15dp"
android:layout_marginTop="266dp"
android:layout_marginStart="32dp"
android:layout_marginEnd="32dp"/>
</LinearLayout>
</android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>
这应该是它的样子:
谢谢!
答案 0 :(得分:1)
在这种情况下,您应该使用按钮的相对布局。