我可以在Android 2.1中使用顶部滑动抽屉吗?

时间:2012-06-17 14:39:46

标签: android android-widget android-animation

我只想在Android上从顶部滑动抽屉,适用于Android 2.1。你可以在this fiddle看到我需要的一个例子 这可以使用View Animations吗?

注意:android misc widgets对我来说没用,因为在这种情况下它们远非可用!

1 个答案:

答案 0 :(得分:-1)

为什么不使用滑动抽屉?

http://developer.android.com/reference/android/widget/SlidingDrawer.html

<SlidingDrawer
     android:id="@+id/drawer"
     android:layout_width="match_parent"
     android:layout_height="match_parent"

     android:handle="@+id/handle"
     android:content="@+id/content">

     <ImageView
         android:id="@id/handle"
         android:layout_width="88dip"
         android:layout_height="44dip" />

     <GridView
         android:id="@id/content"
         android:layout_width="match_parent"
         android:layout_height="match_parent" />

 </SlidingDrawer>

Sliding Drawer Google Search

enter image description here