我在我的应用程序中使用了TextView。例如,在字符串中,我写了一些例如超过30000符号的文本。应用程序中的文本时间仅显示一些符号。如何使tyextview显示全文并滚动应用程序中的所有文本?
答案 0 :(得分:1)
你可以用 android:singleLine =“true”和 android:ellipsize =“marquee”包装你的文字。
这将在滚动模式中显示全文
或者你可以使用android:ellipsize =“none” - >这将显示最左边的文本。
答案 1 :(得分: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>