Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public void toRegistration(View view){
- Intent intent = new Intent(LoginActivity.this, RegisterActivity.class);
- if(!name.equals("") && !password.equals("")){
- intent.putExtra("name", name);
- intent.putExtra("password", password);
- }
- startActivity(intent);
- finish();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement