大家好,又见面了,我是你们的朋友全栈君。
用DrawerLayout作侧滑时,需要注意以下两点:
1.只接受两个子控件,第一个子控件相当于主屏幕,第二个子控件相当于侧滑屏幕;
2.第二个子控件需要添加android:layout_gravity属性,否则不能侧滑。
<?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" android:id="@+id/drawer_layout" android:layout_width="match_parent" android:layout_height="match_parent" android:fitsSystemWindows="true" tools:openDrawer="start">
<!--第一个子控件 -->
<LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical">
...
</LinearLayout>
<!--第一个子控件 -->
<LinearLayout android:layout_width="200dp" android:layout_height="match_parent" android:fitsSystemWindows="false" android:layout_gravity="start" android:background="#FFFFFF">
...
</LinearLayout>
</android.support.v4.widget.DrawerLayout>
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/147672.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...