0

I'm New in Android application developer and on the stackoverflow. I've searched a lot on horizontally scrolling in gridview. I want to show images in grid view as horizontall scrolling.

Please help me.

2 Answers2

0

hey please check this links it's maybe helpful to you.

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

2) Horizontal ListView like Google Catalogs

3) Android GridView draw dividers

Community
  • 1
  • 1
Mohit Raval
  • 440
  • 1
  • 6
  • 19
0

try this in xml file:

<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>
SubbaReddy PolamReddy
  • 2,083
  • 2
  • 17
  • 23