Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to append text into an edittext in android?

In my application I want to give the user ways of selecting text from a list and appending into an edittext, however Im unable to find any documentation on how to do this, any help would go a long way, thanks.

like image 863
Edmund Rojas Avatar asked Apr 02 '12 17:04

Edmund Rojas


1 Answers

Just use append() of the EditText. The Argument will be appended at the end of the Editable.

like image 60
user1014917 Avatar answered Oct 09 '22 05:10

user1014917