在我的屏幕上我有一個列表視圖和一個按鈕。我的清單有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>
你可以試試這個代碼[non-scrollable-listview-inside-scrollview](http://stackoverflow.com/questions/18813296/non-scrollable-listview-inside-scrollview/24629341#24629341) – 2014-08-20 12:28:27