我想在顶部有一个 TextView,如果它超过 5 行文本,它会滚动。然后是底部的文本列表,简单地归档剩余空间。
我正在使用带有 TextView 的 ScrollView。问题是如果我将顶部滚动设置为扭曲内容,如果文本超过 5 行,它将继续变大。如果我将其设置为填充父级,则不会显示按钮文本视图。有没有办法做到这一点?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Tell a Furtune Chat"
android:textSize="38px" />
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Tell a Furtune \n ted \n teda \n rob \n fred \n bed \n jack \n junk \n more"
android:textSize="38px" />
</ScrollView>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Tell a Furtune \n ted \n teda \n rob \n fred \n bed \n jack \n junk \n more"
android:textSize="38px" />
</ScrollView>
</LinearLayout>