效果如下圖,想必大家已經在很多應用中看到過了,下面來看看用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>