2024年3月14日发(作者:)
android 图片横向滚动效果 原创【安卓进化五】
分类: android android开发 2011-07-22 23:18 342人阅读 评论(0) 收藏 举报
近日有个同事要做一个效果:图片横向排列,而且可以横向滚动,而且能点击图片触
发事件,用gallery也可以实现这个效果,现在我用ImageButton来实现,在xml文件
中用HorizontalScrollView包起来这个布局文件就可以了。现把代码分享给大家;先贴图让
大家看一眼效果:
整个队列在左边: 整个队列在中间: 整个队列在右边:
一、布局
view plaincopy to clipboardprint?
1.
2.
3. android:orientation="vertical"
4. android:layout_width="fill_parent"
5. android:layout_height="fill_parent"
6. >
7. 8. android:fadingEdgeLength="0.0dip" android:background="#5B5B5B" 9. android:layout_width="fill_parent" android:scrollbars="none" 10. android:layout_height="fill_parent"> 11. 12. android:id="@+id/toolbar_items" android:paddingBottom="7.0dip"
发布评论