drawelayout中的Android ViewPager占用了整个空间

时间:2018-02-25 15:51:31

标签: android drawerlayout

DrawerLayout中的ViewPager占用整个布局屏幕。即使DrawerLayout的宽度和高度参数是wrap_content,它仍占用整个空间。有没有人遇到类似的情况?用解决方案启发我...请...

Xml布局:

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">
<data
    >
   <variable
       name="main"
       type="com.example.jobin.ushop.model.MainActivityModel">
   </variable>
</data>
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
    <android.support.v7.widget.Toolbar
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/toolbar"
        android:background="@color/colorPrimary"
        >
    </android.support.v7.widget.Toolbar>
        <android.support.v4.widget.DrawerLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/drawer"
        android:layout_below="@+id/toolbar"
        >
        <android.support.v4.view.ViewPager
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="#000000"/>
        <android.support.design.widget.NavigationView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="start"
            android:id="@+id/navigation"
            app:menu="@menu/drawer_view"
            >
        </android.support.design.widget.NavigationView>
        </android.support.v4.widget.DrawerLayout>
    </RelativeLayout>
</layout>

0 个答案:

没有答案