Elyar的Android笔记(七):Android侧滑菜单

Elyar的Android笔记(七):Android侧滑菜单

转载前请注明出处,尊重版权:http://blog.csdn.net/u012418084


      首先明确几点内容:

  1. 实现侧滑需要使用DrawerLayout,它在android.support.v4.widget包中
  2. 主布局容器:用来显示主要的布局内容
  3. 侧滑菜单容器:用来存放侧滑菜单中的子View


     DrawerLayout中包含两个子元素,第一个为主布局中显示的内容,第二个为侧滑菜单中显示的内容


    <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" >

         <LinearLayout

              android:layout_width="match_parent"

              android:layout_height="match_parent" >

             (1)<include layout="@layout/XXXX" />

         //包含主布局显示内容
         </LinearLayout>


         <LinearLayout

              android:layout_width="240dp"

              android:layout_height="match_parent"

             (2)android:layout_gravity="start|right|">

              <include layout="@layout/XXXX" />

          //包含侧滑菜单显示内容
         </LinearLayout>

   </android.support.v4.widget.DrawerLayout>

   注:(1)如果主布局内容和侧滑菜单内容复杂,那么可以以include的方式引入到各自相应的布局中

      (2)android:layout_gravity该属性决定侧滑菜单从哪个方向滑出:start或left为从左侧滑出end或right为从右侧滑出


    完成以上步骤可以实现滑动了

    =====================================================================================================================================================

   


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值