Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- EditText gcashDepositNumberET = findViewById(R.id.gcashDepositNumberET);
- EditText gcashDepositNameET = findViewById(R.id.gcashDepositNameET);
- // Get the values from HotelGcashNumber and HotelGcashName and set them to gcashDepositNumberET and gcashDepositNameET
- String hotelGcashNumber = getIntent().getStringExtra("HotelGcashNumber");
- String hotelGcashName = getIntent().getStringExtra("HotelGcashName");
- gcashDepositNumberET.setText(hotelGcashNumber);
- gcashDepositNameET.setText(hotelGcashName);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement