Im trying to write a very basic android app that displays around 5 pictures one after each other on the screen. I want it to display a different picture after about 10 secon
create blink.xml
put blink.xml in drawable folder and in activity Code write this.
ImageView mImageView ; mImageView = (ImageView)findViewById(R.id.imageView); //this is your imageView mImageView .setImageDrawable(getResources().getDrawable( R.drawable.blink));
then you will get what you want.!