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


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

      handle 就是当你点击它的时候,

      content 要么抽抽屉要么关抽屉。

    别的不多说了,具体步骤如下.

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

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

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

    <?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 ,代码如下:

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

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

    岁月本长而忙者自促;天地本宽而卑者自隘;风花雪月本闲,而劳忧者自冗;天行健,君子以自强不息;地势坤,君子以厚德载物;宠辱不惊,闲看庭前花开花落;去留无意,漫随天外云卷云舒.不妄取,不妄予,不妄想,不妄求,与人方便,随遇而安
  • 相关阅读:
    十三、mysql 分区之 RANGE && LIST
    十二、mysql sql_mode 简学
    十一、mysql输入安全
    十、mysql事务的简介
    九、mysql触发器的概念
    左链接、右链接
    PHP 对数组数值进行排序,使用另一个容器
    JQUERY基础2 效果 遍历 内置遍历函数
    JQUERY基础
    orcal 单行函数组函数
  • 原文地址:https://www.cnblogs.com/vvning/p/9428623.html
Copyright © 2020-2023  润新知