如何动态地在滚动视图中添加组图像视图

时间:2016-02-25 06:04:39

标签: android image android-layout

我正致力于将相似图片分组并将其放入scroll view。因此会有多组相似的图像。朋友们,我更喜欢布局和视图。我是动态创建视图的新手。这是结构         --------------------------------------

    |      ||      ||       |
    |image ||image ||image  |
    |  1   ||   2  ||     3 | 
                                         ----------->Group1
    |      ||      |
    |image ||image | 
    |   4  ||   5  |
    --------------------------------------
    |      ||      ||       |
    |image ||image ||image  |
    |  1   ||   2  ||     3 |
                                              ----------->Group2
    |      ||      |
    |image ||image | 
    |   4  ||   5  |
    --------------------------------------
    |      ||      ||       |
    |image ||image ||image  |
    |  1   ||   2  ||     3 |
                                            ----------->Group3
    |      ||      |
    |image ||image | 
    |   4  ||   5  |

1 个答案:

答案 0 :(得分:0)

您可以使用ListView,并存储自定义列表项。或者在XML布局文件中使用此体系结构来存储视图

ScrollView
  LinearLayout(Vertical)
    Group1
    Group2
    Group3

您存储linearLayout的位置,并继续添加您的组。并且还存储组视图(某种布局)以向每个组添加图像。这样,无论何时向LinearLayout添加组,它都会在末尾添加它,并且它将是可滚动的。在布局宽度和高度方面,使其成为fill_parent,以充分发挥屏幕的潜力。