在android中嵌套循环

时间:2011-10-14 07:46:14

标签: for-loop

我有一系列图像。 我需要连续显示3个图像,然后在另一行显示下一个图像。 如何使用嵌套for循环执行此操作。任何人都可以帮助我吗? 感谢。

3 个答案:

答案 0 :(得分:1)

简单,使用GridView 3列。

<GridView
        android:layout_height="wrap_content"
        android:id="@+id/gridView1"
        android:layout_width="match_parent"
        android:numColumns="3"
        android:horizontalSpacing="10dp"
        android:verticalSpacing="10dp">

答案 1 :(得分:0)

你需要两个循环。 外循环用于行。行中的每个元素都对应一列,因此内部循环用于列。

答案 2 :(得分:0)

基本的嵌套循环结构如下所示:

int imageIndex = 0;
for (int row = 0; row < rowCount; row++) {
    for (int column = 0; column < columnCount; column++ {
        // Draw your image here at x position of (column * image width)
        // and y position of (row * image height). Add a bit to each if you
        // want some spacing between your images.
        // For example:
        drawMyImage(images[imageIndex++], column * imageWidth, row * imageHeight);
    }
}