리스트뷰에 아이템들을 20개 이상 삽입하고 , 그 리스트가 끝나는 지점에 버튼을 하나 삽입하고 싶습니다.

그래서 아래와 같이 xml을 구성했습니다. 

< ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:orientation="vertical"
android:layout_height="wrap_content">
<LinearLayout android:id="@+id/LinearLayout01"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ListView android:id="@+id/list_content"
android:layout_width="fill_parent" android:layout_height="wrap_content">
</ListView>
<Button android:layout_height="wrap_content"
android:layout_width="fill_parent" android:id="@+id/bt_more"
android:text="@string/bt_name_more"></Button>
</LinearLayout>
</ScrollView >

LinearLayout의 height 사이즈를 fill_parent로 설정 해 주었는데도 
화면에 꽉찬 리스트 다음에 버튼이 아니라, 

한줄 크기의 리스트 뷰에 내부에 스크롤이 생기고, 그아래에 버튼이 붙어 있습니다.... 

어떤 부분이 잘못되었을까요 ??