我使用以下代码创建了一个textview:
<TextView
android:id="@+id/txtDescription"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="16dip"
android:textStyle="bold"
android:maxLines="5">
如上所述,我已将5行设置为textview的最大值。
但我的疑问是:如果我要在Textview中显示的字符串超过5行,那么它将被装到5行,以“......”字符结尾。
e.g。
Hello this is the demo of
string which i have
created especially for
the demo of textview
and setting maximum...
与上面相同,我想在TextView输出中显示。
请给我建议,代码或任何链接。
感谢名单