我正在动态地将内容添加到下面的 textView 并且它可以工作。唯一的问题是,我只看到一行文字。如果我通过 layout.xml 或使用字符串将 textView 的文本设置为 25 行长,然后动态地用新文本替换它,那么新文本将只有 25 行长,即使它实际上是 50 行。我将 minLines 设置为一个很高的数字,但这对我来说是草率的代码。知道我在这里缺少什么吗?
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_below="@+id/progressBar1"
android:layout_weight="1" >
<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="match_parent" />
</ScrollView>