android - How to set position of text in TextView/EditText -


for example, lets have for-loop , @ every iteration(let's textview t), t.settext(wordlist.get(i)). sets value of textview whatever last word in list is. want set words next each other. best way that?

note: storing words in 1 big string not option

you can use append method of textview. append string each iteration

example:

 t.append(wordlist.get(i)); 

Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -