Advertisement
kitlolz012

transfer to hotel book form

Oct 6th, 2023
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.50 KB | Source Code | 0 0
  1. EditText gcashDepositNumberET = findViewById(R.id.gcashDepositNumberET);
  2. EditText gcashDepositNameET = findViewById(R.id.gcashDepositNameET);
  3.  
  4. // Get the values from HotelGcashNumber and HotelGcashName and set them to gcashDepositNumberET and gcashDepositNameET
  5. String hotelGcashNumber = getIntent().getStringExtra("HotelGcashNumber");
  6. String hotelGcashName = getIntent().getStringExtra("HotelGcashName");
  7.  
  8. gcashDepositNumberET.setText(hotelGcashNumber);
  9. gcashDepositNameET.setText(hotelGcashName);
  10.  
Tags: Android
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement