实现Android SlidingDrawer抽屉效果的方法

来源:爱站网时间:2020-12-14编辑:网友分享
在学习Android开发的时候很多用户们都不知道怎么实现Android SlidingDrawer抽屉效果,那么今天我们就围绕这个问题为大家介绍实现Android SlidingDrawer抽屉效果的方法。

在学习Android开发的时候很多用户们都不知道怎么实现Android SlidingDrawer抽屉效果,那么今天我们就围绕这个问题为大家介绍实现Android SlidingDrawer抽屉效果的方法。

SlidingDrawer隐藏屏外的内容,并允许用户通过handle以显示隐藏内容。它可以垂直或水平滑动,它有俩个View组成,其一是可以拖动的handle,其二是隐藏内容的View.它里面的控件必须设置布局,在布局文件中必须指定handle和content。

1、布局layou文件

 

 

android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
  android:id="@+id/slidingdrawer"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:content="@+id/content"
  android:handle="@+id/handle"
  android:orientation="vertical" >
       android:id="@+id/handle"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="SlidingDraser" />
  
    android:id="@+id/content"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#00ffaa" >
           android:id="@+id/button"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Button" />
           android:id="@+id/editText"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content" />
  


 


 2、下面是运行程序之后的界面

 

 

另:可在drawable中添加文件
 

 

 

     
     
         
         
         
         
         
   
 

 

总结:

 

1、重要属性

  android:allowSingleTap:指示是否可以通过handle打开或关闭

  android:animateOnClick:指示是否当使用者按下手柄打开/关闭时是否该有一个动画。

  android:content:隐藏的内容

  android:handle:handle(手柄)

2、重要方法

  animateClose():关闭时实现动画。

  close():即时关闭

  getContent():获取内容

  isMoving():指示SlidingDrawer是否在移动。

  isOpened():指示SlidingDrawer是否已全部打开

  lock():屏蔽触摸事件。

  setOnDrawerCloseListener(SlidingDrawer.OnDrawerCloseListener onDrawerCloseListener):SlidingDrawer关闭时调用

  setOnDrawerOpenListener

  setOnDrawerScrollListener

  unlock():解除屏蔽触摸事件。

  toggle():切换打开和关闭的抽屉SlidingDrawer。

上文就是小编介绍实现Android SlidingDrawer抽屉效果的方法,关于这方面的知识小编觉得还是非常有必要的,同时我希望大家能从本文中收获一些实用的东西。

上一篇:如何实现android panellistview圆角

下一篇:Android开发中对话框操作的注意事项

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载