2012-03-01 90 views
1

我剛剛注意到Android Design,也有一個horizontally scrolling grid list。我使用普通的gridview測試它,但它只有垂直滾動。Horizo​​ntall滾動gridview

有人知道這是哪個部件嗎?

+0

複製我的G +在這裏評論:目前還不能一個框架部件,提供這一點,但類似的東西可以用的renderScript和輪播畫面示例代碼 – 2012-03-01 01:42:50

+1

感謝羅馬來實現。剛提交了一項功能請求。 http://code.google.com/p/android/issues/detail?id=26238 如果您希望此小工具可用,請爲此問題加分。 – OKA 2012-03-01 02:07:38

回答

0

您可以在GridView中有一個linearLayout,它代表gridView的每個單元格,然後爲linearLayout設置一個minWidth。這將處理這樣一個事實,那個gridView的每個單元格必須具有5dp的最小寬度。

0

試試這個:

<GridLayout xmlns:android="http://schemas.android.com/apk/res/android" 
       android:layout_width="wrap_content" 
       android:layout_height="match_parent" 
       android:orientation="vertical" 
       android:rowCount="2"> 

</GridLayout> 
相關問題