tags:

views:

74

answers:

1

Is there any way to hide a image after a second or given time in android application? thank you

+1  A: 

post a delayed message to a Handler that essentially does:

ImageView.setVisibility(View.INVISIBLE) 
Samuh