XML和NavigationView定位

时间:2018-05-25 19:27:58

标签: android xml navigation-drawer toolbar drawerlayout

我制作了一个布局,我用XML创建了自己的工具栏,并根据我的要求设置了导航视图。我希望在点击汉堡包图标后显示topleft,navigationView内容应与topleft上的后退按钮一起显示。我可以在导航View Visible中创建内容,但不能在后退按钮中创建内容。因为导航视图在我的工具栏上重叠,后退按钮位于导航视图的后面或下面。我没有办法用XML对其进行排序。在这种情况下帮助我。

XML布局的代码如下:

<?xml version="1.0" encoding="utf-8"?>
<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:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="start"
    android:id="@+id/dl"
    android:orientation="vertical"
    tools:context="com.example.loveb.demo_viewpager.MainActivity">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
       >
        <android.support.v7.widget.Toolbar
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="@color/colorPrimary"
            android:id="@+id/toolbar"
            >
        </android.support.v7.widget.Toolbar>


    <android.support.design.widget.TabLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/toolbar"
        android:id="@+id/tablayout"
        android:background="@color/colorPrimary"
        android:minHeight="?attr/actionBarSize"
        android:theme="@style/Theme.AppCompat.Light.DarkActionBar">

    </android.support.design.widget.TabLayout>

    <android.support.v4.view.ViewPager
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:layout_below="@+id/tablayout"
        android:id="@+id/pager">

    </android.support.v4.view.ViewPager>
    </RelativeLayout>

    <android.support.design.widget.NavigationView
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:id="@+id/navview"
        app:headerLayout="@layout/drawer_layout"
        app:menu="@menu/menu"
        >
    </android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>

enter image description here

1 个答案:

答案 0 :(得分:0)

您必须在代码下方的其他父版式测试中设置工具栏:

if let resultObj = json["results"].first {
 let id = resultObj["id"]
}