Git Getting Started Guide
Overview
Getting and Setting Values
Getting Values from EditText and displaying them by Setting the TextView. public void onBtnClick (View view){ EditText etFirstName = findViewById(R.id.editTextFirstName); TextView tvFirstName = findViewById(R.id.textViewFirstName); tvFirstName.setText(etFirstName.getText().toString()); EditText etLastName = findViewById(R.id.editTextLastName); TextView tvLastName = findViewById(R.
I will get back to you ASAP.