Reputation: 27
I'm putting text on screen with
text.setText(text.getText().toString()+"binary message sent: "+ msg + "\n");
How can I remove the text from the screen?
Upvotes: 0
Views: 55
Reputation: 1859
If you want to set the text to a blank field, use:
text.setText("");
If you want to hide the whole textView use:
text.setVisibility(View.GONE);
Upvotes: 2