Skip to content

Instantly share code, notes, and snippets.

@rasoulmiri
Created September 18, 2017 18:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rasoulmiri/0f9a27c48bffd0c94409cbd93c7656fd to your computer and use it in GitHub Desktop.
Save rasoulmiri/0f9a27c48bffd0c94409cbd93c7656fd to your computer and use it in GitHub Desktop.
timer2
//after 7 second photo load in imageView
//timer for show phoyo
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
header.setImageResource(R.drawable.header_watches);
progressBar.setVisibility(View.GONE);
}
}, 7000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment