I Have one TextView, the text is too long can't fit in one line, How can I make this as multiline TextView? I have added android:singleline="false"
attribute but it's not working.
<TextView
android:text="some long text"
android:singleline="false"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
/>