WEB开发网
开发学院手机开发Android 开发 Android Launcher抽屉类SlidingDrawer的使用 阅读

Android Launcher抽屉类SlidingDrawer的使用

 2010-05-26 06:17:00 来源:WEB开发网   
核心提示:最近在研究Lanucher ,看了源码,发现了SlidingDrawer 这个类,Android Launcher抽屉类SlidingDrawer的使用,也就是所谓的"抽屉"类,它的用法很简单,要包括handle ,和content .handle 就是当你点击它的时候,content 要么抽抽屉要

最近在研究Lanucher ,看了源码,发现了SlidingDrawer 这个类,也就是所谓的"抽屉"类。它的用法很简单,要包括handle ,和content .

handle 就是当你点击它的时候,content 要么抽抽屉要么关抽屉。别的不多说了,具体步骤如下.

1.新建Android 工程,命名为SlidingDrawer .

2.准备素材,在这里我的图标是用Launcher2 里面的图标,放在drawable-hdpi 文件夹目录结构如下:

<a target=Android Launcher抽屉类SlidingDrawer的使用 - 心灵之窗 - 我的博客我做主" src="http://tech.cncms.com/tech/UploadPic/2010911/201091101727391.jpg" width="263" height="392" border="0" onload="return imgzoom(this,550);" style="cursor:pointer;" onclick="javascript:window.open(this.src);"/>

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"

/ >

< p><EditText 

1 2  下一页

Tags:Android Launcher 抽屉

编辑录入:coldstar [复制链接] [打 印]
赞助商链接