WEB开发网
开发学院手机开发Android 开发 Android SlidingDrawer 滑动抽屉效果 阅读

Android SlidingDrawer 滑动抽屉效果

 2012-10-22 11:39:12 来源:WEB开发网   
核心提示: 效果如上图,想必大家已经在很多应用中看到过了,Android SlidingDrawer 滑动抽屉效果,下面来看看用SlidingDrawer 实现滑动抽屉效果从Android1.5开始,加入了android.widget.SlidingDrawer类SlidingDrawer控件的一些属性:android:all

 

 
效果如上图,想必大家已经在很多应用中看到过了,下面来看看用SlidingDrawer 实现滑动抽屉效果
Android1.5开始,加入了android.widget.SlidingDrawer类
SlidingDrawer控件的一些属性:
android:allowSingleTap 指示是否可以通过handle打开或关闭
android:animateOnClick 指示是否当使用者按下手柄打开/关闭时是否该有一个动画。
android:content 隐藏的内容
android:handle handle
 
布局文件:
 
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:orientation="vertical"
    android:background="@drawable/f">
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical|center_horizontal"/>
    <SlidingDrawer
        android:id="@+id/slidingdrawer"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:content="@+id/content"
        android:handle="@+id/handle"
        android:orientation="vertical" >
        <ImageView
            android:id="@id/handle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/music_list_btn" >
        </ImageView>
        <LinearLayout
            android:id="@id/content"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@drawable/t">
            <TextView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:text="隐藏的内容"/>
        </LinearLayout>
    </SlidingDrawer>
</LinearLayout>

1 2  下一页

Tags:Android SlidingDrawer 滑动

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