Advertisement
BimoSora

Untitled

Jan 21st, 2020
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. public boolean onOptionsItemSelected(MenuItem item) {
  2. if (item.getItemId() == R.id.profile) {
  3. startActivity(new Intent(this, ProfileActivity.class));
  4. } else if (item.getItemId() == R.id.buttonLogout) {
  5. finish();
  6. SharedPrefManager.getInstance(getApplicationContext()).logout();
  7. } else if (item.getItemId() == R.id.shake_vpn) {
  8.  
  9. } else if (item.getItemId() == R.id.list_vpn) {
  10. startActivity(new Intent(this, ReadVPNActivity.class));
  11. }
  12. return true;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement