0

私は Android アプリケーション開発者とスタック オーバーフローの初心者です。グリッドビューでの水平スクロールについてよく検索しました。水平スクロールとしてグリッド ビューで画像を表示したい。

私を助けてください。

4

2 に答える 2

0

xmlファイルでこれを試してください:

<HorizontalScrollView 
android="http://schemas.android.com/apk/res/android" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content">

<GridView 
android:layout_width="wrap_content" 
android:layout_height="wrap_content"           
android:id="@+id/gridview" 
android:scrollbars="horizontal"/>
</HorizontalScrollView>
于 2013-01-31T04:57:57.467 に答える
0

ねえ、このリンクをチェックしてくださいそれはあなたに役立つかもしれません。

1)http://android-er.blogspot.in/2012/07/implement-gallery-like.html

2)Googleカタログのような水平ListView

3)AndroidGridViewドローディバイダー

于 2013-01-31T04:55:42.863 に答える