May i know how to put a GridView in HorizontalScrollView.
My xml code is given below but it is not wroking.
<HorizontalScrollView android="http://schemas.android.com/apk/res/android"
android:layout_width="500dp" android:layout_height="500dp">
<GridView android:layout_width="500dp" android:layout_height="400dp"
android:id="@+id/grid" android:columnWidth="65dp" android:padding="5dp"
android:horizontalSpacing="10dp" android:verticalSpacing="10dp"
android:numColumns="4"/>
</HorizontalScrollView>
Try this property for the xml of gridView :
and there is no need to put the gridView in a HorizontalScrollVoew as the gridView itself has as the scrolling property.