1

Android2.1に適用できるAndroidのスライド式ドロワーが必要です。このフィドルで私の必要性の例を見ることができます。
これは使用して可能View Animationsですか?

注:Androidのその他のウィジェットは、この場合は使用できないため、私には役に立ちません。

4

1 に答える 1

-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>

スライディングドロワーGoogle検索

ここに画像の説明を入力してください

于 2012-06-17T21:27:32.223 に答える