我有一个轻微的android布局问题......
我有一个持有 LinearLayout 的 ScrollView 元素。我希望滚动视图填充整个设备屏幕,而线性布局填充滚动视图的整个高度。
我有下面的代码导致滚动视图填充整个屏幕,但线性布局仅填充滚动视图高度的大约一半。
这是我的代码:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ff036c07">
<LinearLayout
android:background="#FF0000"
android:id="@+id/overview_form"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</LinearLayout>
</ScrollView>
有什么我想念的想法吗?