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
Post a Comment