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 text from edit text view
edittext.getText().toString()
and Store the obtained text in a string, say value.
value
value = edittext.getText().toString()
Then set value as the text for textview.
textview
textview.setText(value)