我有一個圖像數組。 我需要在一行中顯示3個圖像,然後在另一行顯示下一個圖像。 如何使用嵌套for循環執行此操作。任何人都可以幫助我嗎? 謝謝。在android中嵌套循環
0
A
回答
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);
}
}
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. 在while循環中嵌套循環 - Java
- 2. for循環嵌套在while循環中
- 3. End =''在嵌套循環中
- 4. 循環嵌套
- 5. 嵌套循環
- 6. C++嵌套循環
- 7. 嵌套循環Javascript
- 8. java嵌套循環
- 9. 與嵌套循環
- 10. 嵌套for循環
- 11. Java:嵌套循環
- 12. SQL嵌套循環
- 13. 嵌套'for'循環
- 14. C#嵌套循環
- 15. Coontaining嵌套循環
- 16. Ant嵌套循環
- 17. Genshi:嵌套循環
- 18. VBA:嵌套/循環
- 19. C++嵌套循環
- 20. 嵌套setInterval循環
- 21. 嵌套foreach循環
- 22. r嵌套循環
- 23. 嵌套循環Smalltalk
- 24. C# - 嵌套循環
- 25. Python:嵌套循環
- 26. PHP嵌套循環
- 27. 嵌套for循環
- 28. 嵌套循環Imacros
- 29. C++嵌套循環
- 30. Xsl嵌套循環