我只是想在Android 2.1上應用Android的頂部滑動抽屜。你可以在this fiddle看到我需要的一個例子。
這可能使用View Animations
?我可以在Android 2.1中使用頂部滑動抽屜嗎?
注意:android misc widgets對我來說是沒用的,因爲它們在這種情況下遠沒有用!
我只是想在Android 2.1上應用Android的頂部滑動抽屜。你可以在this fiddle看到我需要的一個例子。
這可能使用View Animations
?我可以在Android 2.1中使用頂部滑動抽屜嗎?
注意:android misc widgets對我來說是沒用的,因爲它們在這種情況下遠沒有用!
爲什麼不使用滑動抽屜?
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>
沒有人知道什麼? –