DrwaerLayout 无法直接设置滑出的菜单全屏显示,不满足需求。
(slidemenu可以全屏,但是滑动效果不满足需求。)
查了一些资料,并没有好的方法。查资料过程中 获得一个重要信息为,划出菜单后,最大剩余部分为65dp。故采用一个取巧的方法,以达到需求,下面上代码。
- <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:context=".MainActivity" >
-
- <!-- 主界面 -->
- <android.support.v4.view.ViewPager
- android:id="@+id/pager"
- android:layout_width="fill_parent"
- android:layout_height="match_parent"
-
- >
- </android.support.v4.view.ViewPager>
-
- <!-- 滑出菜单部分 -->
-
- <fragment
- android:id="@+id/id_left_menu"
- android:name="com.example.fragment.fragment"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginRight="-65dp"
- android:layout_gravity="left"
- android:tag="LEFT" />
-
-
- </android.support.v4.widget.DrawerLayout>
目前暂没发现适配问题,当然这只是一个解决思路,并不是非常好的一个方法,如果有好的方法欢迎分享~