我正在尝试在 android TextView 中输入超过 2000 - 3000 个字符
它不显示任何内容。
任何指南都对 android textview 有字符限制还是什么?
我在G3中做了一些小测试,发现:如果activtiy布局中有TextView,可以显示超过4096个字符,但是当它被listview的item拥有时,它只是显示不可见。所以没有硬性限制,只是可以根据设备显示什么。
发布您的代码可能是您的 textview 扩展并填充屏幕使用 Scrollview 来处理此问题。
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:alpha="0.75"
android:gravity="center_horizontal"
android:textAppearance="@android:style/TextAppearance"
android:textColor="@color/alert_dialog_heading_text_color"
android:textSize="@dimen/text_size_for_subheading" />
</ScrollView>