Android TextView に 2000 ~ 3000 文字を入力しようとしています
何も表示されません。
Androidのテキストビューまたは何に文字制限があるガイドはありますか?
G3 でいくつかの小さなテストを行ったところ、次のことがわかりました。Activtiy レイアウトに TextView がある場合、4096 文字を超える文字を表示できますが、リストビューのアイテムによって所有されている場合、表示されないだけです。したがって、デバイスに応じて表示できるものだけで、厳密な制限はありません。
コードを投稿すると、テキストビューが展開されて画面がいっぱいになり、スクロールビューを使用してこの問題を処理できます。
<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>