Edmund Rojas
Edmund Rojas

Reputation: 6606

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.

Upvotes: 8

Views: 11506

Answers (1)

user1014917
user1014917

Reputation: 681

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

Upvotes: 11

Related Questions