Guest User

Untitled

a guest
Mar 24th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. Intent launchIntent = new Intent(App.this, LoginActivity.class);
  2. launchIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  3. if (launchIntent != null) {
  4. startActivity(launchIntent);
  5. }
Add Comment
Please, Sign In to add comment