android - Is there anyway to automatically make a TextView go to a new line after a certain amount of characters? -
i can programmatically, inefficient, , time consuming if ever need multiple textviews.
i want textview go new line after 15 characters, every 15 characters. tried using android:maxlength="15"
stopped string @ 15 characters. no new line or anything.
use android:maxems
specify maximum amount of characters in conjunction android:singleline="false"
.
Comments
Post a Comment