android - How can i scroll the gridview horrizonally insted of vertically -


i doing task retrieves images server , displays in gridview in application. grid view scrolling , down. want scroll view left right menu screen scrolls. possible grid view? or there better way this? please me in doing this

add line in gridview.

android:scrollbars="horizontal" 

for ex:

        <gridview             android:id="@+id/gridview1"             android:layout_width="match_parent"             android:layout_height="match_parent"                             android:animationcache="true"                             android:numcolumns="3"             android:scrollbars="horizontal"             android:scrollingcache="false" >         </gridview> 

Comments

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -