I want to get the user input for the EditText view and display it on the screen through TextView when the Button is clicked. I also, w
EditText
TextView
Button
First get the value from edit text in a String variable
String value = edttxt.getText().toString();
Then set that value to textView
txtview.setText(value);
Where edttxt refers to edit text field in XML file and txtview refers to textfield in XML file to show the value