I want to achieve wrap text in android. I am using following attributes but still couldnt be able to achieve
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textview01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:ellipsize="none"
android:scrollHorizontally="false"
android:text="@string/hello" /> // @String/hello <string name="hello">Hello,How are you world whatsup</string>
Anyone please help ?
use this