Skip to content

Instantly share code, notes, and snippets.

@m7mdra
Created March 11, 2016 13:57
Show Gist options
  • Save m7mdra/d476e1a20de088a903a5 to your computer and use it in GitHub Desktop.
Save m7mdra/d476e1a20de088a903a5 to your computer and use it in GitHub Desktop.
Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
startActivity(new Intent(MainActivity.this, UserLogin.class));
finish();
}
}, time);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment