Advertisement
Guest User

Untitled

a guest
Jan 28th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. //MAIN2ACTIVITY.JAVA
  2.  
  3. @Override
  4. protected void onCreate(Bundle savedInstanceState) {
  5. super.onCreate(savedInstanceState);
  6. setContentView(R.layout.activity_file2);
  7. Intent recevie_value = getIntent();
  8. String show_name = recevie_value.getStringExtra("Username");
  9. String password = recevie_value.getStringExtra("Password");
  10. String repassword = recevie_value.getStringExtra("Repassword");
  11. String firstname = recevie_value.getStringExtra("Firstname");
  12. String lastname = recevie_value.getStringExtra("Lastname");
  13. String gender = recevie_value.getStringExtra("rd");
  14. String bd = recevie_value.getStringExtra("Datepicker");
  15. TextView tv = (TextView) findViewById(R.id.textView);
  16. TextView tv2 = (TextView) findViewById(R.id.textView2);
  17. TextView tv3 = (TextView) findViewById(R.id.textView3);
  18. TextView tv4 = (TextView) findViewById(R.id.textView4);
  19. TextView tv5 = (TextView) findViewById(R.id.textView5);
  20. TextView tv6 = (TextView) findViewById(R.id.textView6);
  21. TextView tv7 = (TextView) findViewById(R.id.textView7);
  22. tv.setText(" Username: "+show_name);
  23. tv2.setText(" Password : "+password);
  24. tv3.setText(" Repassword : "+repassword);
  25. tv4.setText(" Firstname : "+firstname);
  26. tv5.setText(" Lastname : "+lastname);
  27. tv6.setText(" Gender : "+gender);
  28. tv7.setText(" Birth Date : " +bd);
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement