I want to display images like a slideshow but I can't make it pause for 5 seconds before displaying the next image...
I have tried to make the thread sleep but it paused for 15 seconds and displayed the last (3rd) image.
for (int i = 0; i < 3; i++) {
File imgFile = new File(paths[i]);
if(imgFile.exists()){
Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
mimage.setImageBitmap(myBitmap);
}
//**I want the thread pause for 5 seconds here**
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…