我正在设计一个包含抽屉式布局的应用程序,我试图将layout_gravity添加到我的navigationView
中,但是在选择中没有出现。我尝试重写代码,但始终得到相同的结果。
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.android.friendzr.MainActivity"
android:id="@+id/drawer_layout"
android:fitsSystemWindows="true">
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include
layout="@layout/app_bar_layout"
android:id="@+id/toolbar"
/>
<android.support.design.widget.BottomNavigationView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
app:menu="@menu/buttom_navigation"
android:background="?android:attr/windowBackground"
android:id="@+id/bottom_navigation_view"/>
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/bottom_navigation_view"
android:layout_below="@id/toolbar"/>
</RelativeLayout>
<android.support.design.widget.NavigationView
android:layout_width="wrap_content"
android:layout_height="match_parent"
/>
</android.support.v4.widget.DrawerLayout>