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
bb.setOnClickListener( new View.OnClickListener() { public void onClick(View view) { String s1=tt.getText().toString(); tv.setText(s1); } } );