android图像显示应用程序代码

时间:2016-06-07 18:41:30

标签: android-studio

我是Android应用程序开发的初学者,我正在通过一个应用程序在应用程序中显示图像,我无法理解下面的代码..谁能解释一下?

imageIndex++;
            imageIndex=imageIndex% images.length;
            iv.setImageResource(images[imageIndex]);

为什么我们需要写ImageIndex%images.length?

1 个答案:

答案 0 :(得分:0)

这是为了确保您访问“images”数组越界。 imageIndex不应超过数组大小。这不是Android或图像特有的,只是基本的编程概念。