Android高手进阶教程(二)之----Android Launcher抽屉类SlidingDrawer的使用!

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

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

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

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

 Android高手进阶教程(二)之----Android Launcher抽屉类SlidingDrawer的使用!_第1张图片

3.设置main.xml 布局:代码如下:

<textarea cols="50" rows="15" name="code" class="c-sharp">&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt; &lt;LinearLayout xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot; android:orientation=&quot;vertical&quot; android:layout_width=&quot;fill_parent&quot; android:layout_height=&quot;fill_parent&quot; android:background=&quot;#808080&quot; &gt; &lt;SlidingDrawer android:id=&quot;@+id/slidingdrawer&quot; android:layout_width=&quot;fill_parent&quot; android:layout_height=&quot;fill_parent&quot; android:orientation=&quot;vertical&quot; android:handle=&quot;@+id/handle&quot; android:content=&quot;@+id/content&quot;&gt; &lt;Button android:id=&quot;@+id/handle&quot; android:layout_width=&quot;88dip&quot; android:layout_height=&quot;44dip&quot; android:background=&quot;@drawable/handle&quot; /&gt; &lt;LinearLayout android:id=&quot;@+id/content&quot; android:layout_width=&quot;fill_parent&quot; android:layout_height=&quot;fill_parent&quot; android:background=&quot;#00ff00&quot;&gt; &lt;Button android:id=&quot;@+id/button&quot; android:layout_width=&quot;wrap_content&quot; android:layout_height=&quot;wrap_content&quot; android:text=&quot;Button&quot; /&gt; &lt;EditText android:id=&quot;@+id/editText&quot; android:layout_width=&quot;fill_parent&quot; android:layout_height=&quot;wrap_content&quot; /&gt; &lt;/LinearLayout&gt; &lt;/SlidingDrawer&gt; &lt;/LinearLayout&gt; </textarea>

 

4.设置handle 图标的样式,在drawable 里添加handle.xml ,代码如下:

<textarea cols="50" rows="15" name="code" class="c-sharp">&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt; &lt;selector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;&gt; &lt;item android:state_window_focused=&quot;false&quot; android:state_enabled=&quot;true&quot; android:drawable=&quot;@drawable/handle_normal&quot; /&gt; &lt;item android:state_pressed=&quot;true&quot; android:drawable=&quot;@drawable/handle_pressed&quot; /&gt; &lt;item android:state_focused=&quot;true&quot; android:state_enabled=&quot;true&quot; android:drawable=&quot;@drawable/handle_focused&quot; /&gt; &lt;item android:state_enabled=&quot;true&quot; android:drawable=&quot;@drawable/handle_normal&quot; /&gt; &lt;item android:state_focused=&quot;true&quot; android:drawable=&quot;@drawable/handle_focused&quot; /&gt; &lt;/selector&gt; </textarea>

 

5.运行之。将会得到如下效果:

Android高手进阶教程(二)之----Android Launcher抽屉类SlidingDrawer的使用!_第2张图片

Android高手进阶教程(二)之----Android Launcher抽屉类SlidingDrawer的使用!_第3张图片

的比较简单呵呵,如果想深入了解,大家看Launcher 源码吧!

 

你可能感兴趣的:(android,layout,button,encoding)