最近在研究Lanucher ,看了源码,发现了SlidingDrawer 这个类,也就是所谓的"抽屉"类。它的用法很简单,要包括handle ,和content .
handle 就是当你点击它的时候,content 要么抽抽屉要么关抽屉。别的不多说了,具体步骤如下.
1.新建Android 工程,命名为SlidingDrawer .
2.准备素材,在这里我的图标是用Launcher2 里面的图标,放在drawable-hdpi;
3.设置main.xml 布局:代码如下:
view plaincopy to clipboardprint?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#808080"
>
<SlidingDrawer
android:id="@+id/slidingdrawer"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:handle="@+id/handle"
android:content="@+id/content">
<Button
android:id="@+id/handle"
android:layout_width="88dip"
android:layout_height="44dip"
android:background="@drawable/handle"
/>
<LinearLayout
android:id="@+id/content"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#00ff00">
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
/>
<EditText
android:id="@+id/editText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
</SlidingDrawer>
</LinearLayout>
4.设置handle 图标的样式,在drawable 里添加handle.xml ,代码如下:
view plaincopy to clipboardprint?
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_window_focused="false" android:state_enabled="true" android:drawable="@drawable/handle_normal" />
<item android:state_pressed="true" android:drawable="@drawable/handle_pressed" />
<item android:state_focused="true" android:state_enabled="true" android:drawable="@drawable/handle_focused" />
<item android:state_enabled="true" android:drawable="@drawable/handle_normal" />
<item android:state_focused="true" android:drawable="@drawable/handle_focused" />
</selector>
分享到:
相关推荐
Aj_01 来自:http://blog.csdn.net/Android_Tutor/archive/2010/04/14/5486804.aspx 测试:Android Launcher抽屉类SlidingDrawer的使用!
本项目以"android 抽屉从左拉出 slidingdrawer"为主题,旨在实现一个自定义控件,模拟SlidingDrawer的效果,但支持从左侧拉出,向右收回。SlidingDrawer虽然在Android API 21之后被弃用,但其原理仍然值得学习和借鉴...
Android 高手进阶教程(二)之----Android Launcher 抽屉类 SlidingDrawer 的 使用 最近在研究 Lanucher ,看了源码,发现了 SlidingDrawer 这个类,也就是 所谓的"抽屉"类。它的用法很简单,要包括 handle ,和 content...
Android高手进阶教程之----Android Launcher抽屉类SlidingDrawer的使用.doc Android高手进阶教程之----Android Location的使用!! .doc Android高手进阶教程之----Android PopupWindow的使用!!! .doc Android高手...
接着,教程提到了Android Launcher抽屉类SlidingDrawer的使用。SlidingDrawer是Android中用于实现抽屉效果的控件。简单来说,SlidingDrawer包含handle和content两部分,当handle被点击时,content部分会产生滑动动作...
#### 二、Android Launcher抽屉类SlidingDrawer的使用 ##### 1. 工程搭建与素材准备 - **新建工程**: 使用Android Studio或其他IDE新建名为“SlidingDrawer”的项目。 - **素材准备**: 选择合适的图标放置于`...
#### 二、Android Launcher 抽屉类 SlidingDrawer 的使用 ##### 1. 创建Android工程 - **步骤**: 使用Android Studio或其他IDE创建一个新项目,命名为“SlidingDrawer”。 ##### 2. 准备素材 - **步骤**: 选择合适...
SlidingDrawer是Android系统中一个用于创建可滑动抽屉效果的组件。它通常用来隐藏和显示额外的视图,如菜单、设置等,用户可以通过手势从屏幕边缘滑出或滑入。在这款launcher中,SlidingDrawer被巧妙地应用,使得...
在Android系统中,如launcher(应用抽屉)就是一种典型的抽屉设计,用户可以通过滑动来查看和启动已安装的应用。在本文中,我们将探讨如何在Android应用中使用`SlidingDrawer`组件来实现类似的功能。 首先,让我们...
#### 二、Android Launcher抽屉类SlidingDrawer的使用 - **SlidingDrawer简介**: SlidingDrawer是一个可以滑动展开或关闭的组件,常用于实现抽屉式导航菜单。 - **基本用法**: - 创建SlidingDrawer实例,并设置其...