Guest User

Untitled

a guest
Jan 16th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. SharedPreferences pref = getSharedPreferences("a", Context.MODE_PRIVATE);
  2. if (pref.getBoolean("aa", false)) {
  3. Intent intent = new Intent(this, A2.class);
  4. startActivity(intent);
  5. finish();
  6. } else {
  7.  
  8.  
  9. SharedPreferences pref1 = getSharedPreferences("a", Context.MODE_PRIVATE);
  10. SharedPreferences.Editor edt = pref1.edit();
  11. edt.putBoolean("aa", true);
  12. edt.commit();
  13.  
  14. }
Add Comment
Please, Sign In to add comment