关于 DrawerLayout 如何全屏显示菜单

DrwaerLayout 无法直接设置滑出的菜单全屏显示,不满足需求。

(slidemenu可以全屏,但是滑动效果不满足需求。)

查了一些资料,并没有好的方法。查资料过程中 获得一个重要信息为,划出菜单后,最大剩余部分为65dp。故采用一个取巧的方法,以达到需求,下面上代码。


[java]  view plain  copy
  1. <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  2.     xmlns:tools="http://schemas.android.com/tools"  
  3.     android:layout_width="match_parent"  
  4.     android:layout_height="match_parent"  
  5.     tools:context=".MainActivity" >  
  6.   
  7. <!--  主界面 -->  
  8.     <android.support.v4.view.ViewPager  
  9.         android:id="@+id/pager"  
  10.         android:layout_width="fill_parent"  
  11.         android:layout_height="match_parent"  
  12.       
  13.         >  
  14.     </android.support.v4.view.ViewPager>  
  15.   
  16. <!-- 滑出菜单部分 -->  
  17.       
  18.        <fragment        
  19.         android:id="@+id/id_left_menu"  
  20.         android:name="com.example.fragment.fragment"  
  21.         android:layout_width="match_parent"      //如果要全屏滑出菜单需设置宽度为macth_parent  
  22.         android:layout_height="match_parent"  
  23.         android:layout_marginRight="-65dp"   // 设置-65dp,占满剩余无法滑动到的65dp  
  24.         android:layout_gravity="left"  
  25.         android:tag="LEFT"  />  
  26.       
  27.       
  28. </android.support.v4.widget.DrawerLayout>  

目前暂没发现适配问题,当然这只是一个解决思路,并不是非常好的一个方法,如果有好的方法欢迎分享~
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值