Hey, Is it possible to specify a textview to have 25 characters in a line? I have tried android:maxLength=”25″ though it shows the first part of the text and the other part disappears.. Thanks
Edit1: I can also put the text into an EditText.. but I want that the characters that are after 25 chars, go to a new line..
yes , sure
android:maxLength="5"works for TextView to set the maximum number of characters for TextView. You can setandroid:layout_width="130dip"for the TextView too. That will show the character in the format abc… if the text exceed the layout width.