如何在垂直滚动视图中显示图像列表?
我有一个像这样的图像列表
public Integer[] mImageIdsen = {
R.drawable.small,
R.drawable.small,
R.drawable.small,
R.drawable.small,
R.drawable.small,
R.drawable.small};
,我想以滚动视图中的线性垂直布局显示它。 如何将此图像分配到垂直滚动列表? 我无法放置 xml 代码。
I have a list of images like this
public Integer[] mImageIdsen = {
R.drawable.small,
R.drawable.small,
R.drawable.small,
R.drawable.small,
R.drawable.small,
R.drawable.small};
and I want to show it in a linear vertical layout which is in a scrollview.
How can I assign this images to the vertical scroll list?
I can't put the xml code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
对您想要垂直添加图像的父布局应用滚动。
Apply scroll for parent layout in which u want to add your images vertically.
自定义列表视图是最好的解决方案。重写 getview 并在其中添加图像。
Custom list view is the best solution for the same. Override getview and add the images within it.
您可以使用
Gallery
来显示这些。它是水平滚动的You could use
Gallery
to display these. It's horizontal scrollable