在我的屏幕上,我有一个列表视图和一个按钮。我的清单有 8 项。如果这两个项目都不适合,我希望我的屏幕滚动。我不希望我的列表有滚动,但包括列表和按钮的完整布局。如果我使用下面的布局,它只显示在列表中的项目上,我必须在列表中滚动才能转到下一个项目。
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent" >
<LinearLayout
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ListView android:id="@android:id/list"
android:layout_height="wrap_content" android:layout_width="fill_parent"
android:background="@drawable/round_background" />
<Button android:text="Search" android:id="@+id/carSearchButton"
android:layout_gravity="center_horizontal" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</ScrollView>