Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make a TextView multiline programmatically in Android (Java)

I want to make my textview multiline.

Image : http://s13.postimg.org/y0q78e1yv/Capture.png

But how can I make my text multiline ?

Which atribut ?

TextView txt_tweet = (TextView) View.inflate(this, R.layout.special_textview, null);

special_textview

    <?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"

    android:paddingLeft="20dp"
    android:paddingRight="20dp"
    android:paddingBottom="5dp"
    android:inputType="textMultiLine"
    android:scrollHorizontally="false">

</TextView>
like image 299
mistermm Avatar asked Jun 09 '15 13:06

mistermm


2 Answers

I did it following way:

tv.setElegantTextHeight(true);
tv.setInputType(InputType.TYPE_TEXT_FLAG_MULTI_LINE);
tv.setSingleLine(false);
like image 143
Manpreet Singh Dhillon Avatar answered Oct 19 '22 09:10

Manpreet Singh Dhillon


You want to show to different texts in the same textview? if so, use two text views like:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world" />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world" />
</LinearLayout>

Remote android:inputType="textMultiLine", this is an EditText Atribute.

If you just want to use more then one line in the same text view:

android:maxLines="5"//optional to set max numbers of lines
android:minLines="2"//optional to set min numbers of lines
android:singleLine="false"//set false to allow multiple line
android:lines="2" //or more

If this textview you want to use belongs to a ListView, just use:

android.R.layout.simple_list_item_2

It will give you two texts views to work on.

like image 42
Kamila Brito Avatar answered Oct 19 '22 08:10

Kamila Brito