我正在尝试在Android TextView中输入超过2000 - 3000个字符
它不会显示任何内容。
任何一个指南都有android textview的字符限制或什么?
答案 0 :(得分:1)
我在G3做了一些小测试,我发现: 如果活动布局中有TextView,则显示超过4096 字符,但当它由listview的项目拥有时,它只显示 无形。所以没有硬性限制,只能根据设备显示什么。
答案 1 :(得分:0)
发布您的代码可能是您的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>