我在我的应用程序中使用了 TextView。例如在字符串中我写了一些例如超过 30000 个符号的文本。应用程序中的文本时间仅显示一些符号。如何使 tyextview 显示全文并滚动应用程序中的所有文本?
问问题
5065 次
2 回答
1
你可以用android:singleLine="true"和android:ellipsize="marquee"包裹你的文本。
这将以滚动模式显示全文
或者您可以使用 android:ellipsize="none" -> 这将显示在最左侧换行文本。
于 2012-04-07T07:09:09.583 回答
0
你可以像这样包裹你的TextView
内部ScrollView
:
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</ScrollView>
于 2012-04-07T06:58:11.400 回答