我的应用程序中的 TextView 有问题。到目前为止,它在我测试过的 3 部手机上都能正常工作,但不幸的是,它在运行 MIUI ROM 的手机上往往表现得很奇怪。
字符串在屏幕末尾被截断,而不仅仅是换行:
它只是一个常规的 TextView ...顺便说一下,这是 XML 代码:
<ScrollView
android:id="@+id/scroll_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:id="@+id/linearLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<TextView
android:id="@+id/question_text"
android:text="@string/question"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:textSize="24sp"
>
任何猜测,为什么它在特定的ROM中被切断?