我只想在Android上从顶部滑动抽屉,适用于Android 2.1。你可以在this fiddle看到我需要的一个例子
这可以使用View Animations
吗?
注意:android misc widgets对我来说没用,因为在这种情况下它们远非可用!
答案 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>