Guest User

Untitled

a guest
Mar 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. Intent toMain = new Intent(LoginActivity.this, MainActivity.class);
  2. toMain.putExtra("bool1", "true"); //Optional parameters
  3. LoginActivity.this.startActivity(toMain);
  4. //To prevent go back to login
  5. finish();
  6.  
  7. Bundle fromLogin = getIntent().getExtras();
  8. if (extras != null) {
  9. String value = extras.getString("bool1");
  10. //convert this to boolean
  11. }
Add Comment
Please, Sign In to add comment