I am using following TextView
to display some data in it:
<TextView android:id="@+id/notificationText"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:textSize="18sp"
android:inputType="textMultiLine"
android:maxLines="2"
android:layout_paddingRight="20dip"
android:textColor="#ffffff"/>
I want to wrap text to next line. How can I do this?
for the new line in TextView just add \n in middle of your text it works..
Add Line Breaks to a TextView Just add a \n to your text. This can be done directly in your layout file, or in a string resource and will cleanly break the text in your TextView to the next line.
In Android all layout can be nested one another.
you must set android:scrollHorizontally="false"
in your xml.
In Some case It works by setting width to 0dp on text views.
android:layout_width="0dp"
here is a link to original answer.
You could also try
android:inputType="textMultiLine"
in your XML. This worked for me.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With