Guest User

Untitled

a guest
Jan 16th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. builder.setTitle("Login Error");
  2. displayAlert(jsonObject.getString("message"));
  3. }
  4. else {
  5.  
  6. Intent intent=new Intent(Login.this,Success.class);
  7. Bundle bundle=new Bundle();
  8. bundle.putString("name",jsonObject.getString("name"));
  9. bundle.putString("email",jsonObject.getString("email"));
  10. intent.putExtras(bundle);
  11. startActivity(intent);
  12.  
  13. }
Add Comment
Please, Sign In to add comment