How To Hide Image After A Second In Android
Is there any way to hide a image after a second or given time in android application? thank you
Solution 1:
post a delayed message to a Handler
that essentially does:
ImageView.setVisibility(View.INVISIBLE)
Post a Comment for "How To Hide Image After A Second In Android"