我是 Android 应用程序开发人员和 stackoverflow 的新手。我在gridview中水平滚动搜索了很多。我想在网格视图中将图像显示为水平滚动。
请帮我。
我是 Android 应用程序开发人员和 stackoverflow 的新手。我在gridview中水平滚动搜索了很多。我想在网格视图中将图像显示为水平滚动。
请帮我。
在 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>
嘿,请检查此链接,它可能对您有帮助。
1) http://android-er.blogspot.in/2012/07/implement-gallery-like.html