如何在Textview中显示非常长的文本

时间:2014-10-13 18:36:28

标签: android text android-listview textview

我有listview的内容textview。 我尝试在该textview中显示非常长的文本(10.000个字符)。

当程序运行时。 textview中没有文字。

但是,当我设置文本只有2000个字符时,textview显示文本。

如何在一个textview中显示10.000个字符?

这是我的XML:

   <TextView
            android:id="@+id/message"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom="10dp"
            android:layout_marginLeft="3dp"
            android:layout_marginRight="5dp"
            android:layout_marginTop="5dp"
            android:layout_weight="1"
            android:autoLink="all"
            android:maxEms="1000"
            android:maxLength="10000"
            android:maxLines="1000"
            android:singleLine="false"
            android:text="Message"
            android:textColor="@color/Black"
            android:textSize="@dimen/txt_message" />

0 个答案:

没有答案