2012-06-17 78 views

回答

-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

+0

它可以從上到下使用嗎?我想使用它,但它不支持從上到下的方向! –

+0

是的,你可以擴展它,使它從頂部到底部而不是從底部到頂部!去搜索:http://stackoverflow.com/questions/1142979/how-to-change-orientation-of-android-slidingdrawer-by-code?rq=1 – Blundell

+0

你的答案不起作用。 – mixel