我有一个简单的问题要问您:是否可以在包含 a 的布局中强制没有屏幕溢出ScrollView
?
例如,如果我有以下布局:
<LinearLayout
android:id="@+id/wrapper_table"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
</LinearLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
</TableLayout>
</ScrollView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
</LinearLayout>
</LinearLayout>
如果 TheTableLayout
有很多TableRow
,则将Scrollview
扩大到屏幕的末尾,并且下部LinearLayout
不再可见。是否可以在没有设置高度的情况下强制ScrollView
高度以让足够的空间显示较低的LinearLayout
?
谢谢!!