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.
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.
hey please check this links it's maybe helpful to you.
1) http://android-er.blogspot.in/2012/07/implement-gallery-like.html
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>