其实很简单,ScrollView添加属性android:fillViewport="true"
即可。例子见下方:
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#FF0000"
android:text="萤火虫叔叔">
</TextView>
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="#00FF00"
android:layout_weight="1"
android:text="萤火虫叔叔的尾巴">
</TextView>
</LinearLayout>
</ScrollView>
第二个的TextView
会充满容器的剩余部分。
网友评论