我正在尝试在我的navigationView中使用layout_gravity,但是它没有出现在选择中

时间:2019-09-09 02:07:30

标签: java android xml

我正在设计一个包含抽屉式布局的应用程序,我试图将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>

0 个答案:

没有答案