Android2.1に適用できるAndroidのスライド式ドロワーが必要です。このフィドルで私の必要性の例を見ることができます。
これは使用して可能View Animations
ですか?
注:Androidのその他のウィジェットは、この場合は使用できないため、私には役に立ちません。
Android2.1に適用できるAndroidのスライド式ドロワーが必要です。このフィドルで私の必要性の例を見ることができます。
これは使用して可能View Animations
ですか?
注:Androidのその他のウィジェットは、この場合は使用できないため、私には役に立ちません。
スライド式の引き出しを使ってみませんか?
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>