`
andy_叶
  • 浏览: 69139 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

Android Launcher抽屉类(SlidingDrawer)的使用

阅读更多



Main.xml代码  收藏代码
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical"  
  6.     android:background="#808080">  
  7. <SlidingDrawer   
  8.     android:id="@+id/sliding_drawer"  
  9.     android:layout_width="fill_parent"  
  10.     android:layout_height="fill_parent"  
  11.     android:orientation="vertical"  
  12.     android:handle="@+id/handle"  
  13.     android:content="@+id/content"  
  14.     >  
  15.     <Button   
  16.         android:id="@+id/handle"  
  17.         android:layout_width="wrap_content"  
  18.         android:layout_height="wrap_content"  
  19.         android:background="@drawable/handle"  
  20.         />  
  21.     <LinearLayout   
  22.         android:id="@+id/content"  
  23.         android:layout_width="fill_parent"  
  24.         android:layout_height="fill_parent"  
  25.         android:background="#00ff00"  
  26.         >  
  27.         <Button  
  28.             android:id="@+id/button"  
  29.             android:layout_width="wrap_content"  
  30.             android:layout_height="wrap_content"  
  31.             android:text="Button"  
  32.             />  
  33.         <EditText   
  34.             android:id="@+id/editText"  
  35.             android:layout_width="fill_parent"  
  36.             android:layout_height="wrap_content"              
  37.             />  
  38.     </LinearLayout>  
  39. </SlidingDrawer>  
  40. </LinearLayout>  

分享到:
评论

相关推荐

    Android Launcher抽屉类SlidingDrawer的使用(源码)

    Aj_01 来自:http://blog.csdn.net/Android_Tutor/archive/2010/04/14/5486804.aspx 测试:Android Launcher抽屉类SlidingDrawer的使用!

    android 抽屉从左拉出 slidingdrawer

    本项目以"android 抽屉从左拉出 slidingdrawer"为主题,旨在实现一个自定义控件,模拟SlidingDrawer的效果,但支持从左侧拉出,向右收回。SlidingDrawer虽然在Android API 21之后被弃用,但其原理仍然值得学习和借鉴...

    Android高手进阶教程.pdf

    Android 高手进阶教程(二)之----Android Launcher 抽屉类 SlidingDrawer 的 使用 最近在研究 Lanucher ,看了源码,发现了 SlidingDrawer 这个类,也就是 所谓的"抽屉"类。它的用法很简单,要包括 handle ,和 content...

    Android高手进阶教程与Android基础教程

    Android高手进阶教程之----Android Launcher抽屉类SlidingDrawer的使用.doc Android高手进阶教程之----Android Location的使用!! .doc Android高手进阶教程之----Android PopupWindow的使用!!! .doc Android高手...

    Android高手进阶教程

    接着,教程提到了Android Launcher抽屉类SlidingDrawer的使用。SlidingDrawer是Android中用于实现抽屉效果的控件。简单来说,SlidingDrawer包含handle和content两部分,当handle被点击时,content部分会产生滑动动作...

    android高手进阶教程

    #### 二、Android Launcher抽屉类SlidingDrawer的使用 ##### 1. 工程搭建与素材准备 - **新建工程**: 使用Android Studio或其他IDE新建名为“SlidingDrawer”的项目。 - **素材准备**: 选择合适的图标放置于`...

    android高手提高篇

    #### 二、Android Launcher 抽屉类 SlidingDrawer 的使用 ##### 1. 创建Android工程 - **步骤**: 使用Android Studio或其他IDE创建一个新项目,命名为“SlidingDrawer”。 ##### 2. 准备素材 - **步骤**: 选择合适...

    launcher试玩

    SlidingDrawer是Android系统中一个用于创建可滑动抽屉效果的组件。它通常用来隐藏和显示额外的视图,如菜单、设置等,用户可以通过手势从屏幕边缘滑出或滑入。在这款launcher中,SlidingDrawer被巧妙地应用,使得...

    android UI进阶之android中隐藏的layout 抽屉的使用方法

    在Android系统中,如launcher(应用抽屉)就是一种典型的抽屉设计,用户可以通过滑动来查看和启动已安装的应用。在本文中,我们将探讨如何在Android应用中使用`SlidingDrawer`组件来实现类似的功能。 首先,让我们...

    android高手进阶教程 完整版 pdf

    #### 二、Android Launcher抽屉类SlidingDrawer的使用 - **SlidingDrawer简介**: SlidingDrawer是一个可以滑动展开或关闭的组件,常用于实现抽屉式导航菜单。 - **基本用法**: - 创建SlidingDrawer实例,并设置其...

Global site tag (gtag.js) - Google Analytics