我想像画廊一样实现水平列表视图。我正在获取资产文件夹的图像并在画廊中显示。Gallery 刚刚在 android jelly bean 中损坏,所以我不想使用它。有什么解决方案可以用来代替画廊。
问问题
627 次
3 回答
0
<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollbars="none"
android:isScrollContainer="true">
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</HorizontalScrollView>
于 2013-06-25T06:27:28.620 回答
0
我想你想使用自定义水平 listView ..
所以,你检查以下链接......
http://sandyandroidtutorials.blogspot.in/2013/06/horizontal-listview-tutorial.html
这是提供水平 ListView 教程,这对你很有用。
于 2013-06-25T06:28:54.223 回答
0
这将帮助您这是一个简单的 Android 水平滚动视图演示。
http://www.androidhub4you.com/2012/09/horizontal-scroll-view-in-android.html
于 2013-06-25T06:29:16.863 回答