Android - wait for touch event
问题 In my Android app, I'd like to display several images on the screen in sequence, waiting for a touch event (a single tap) to go to the next one. I saw here that one way to do this should be: public class LoadImage extends Activity { private Thread thread; //defined inside the activity @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_load_image); [get an image and create a bitmap from it] ImageView imageView =