画面サイズに応じてリストビューのコンテンツを自動的に合わせたい.つまり、リストビューに5つのデータがあり、画面が大きい場合、この5つのデータでも画面全体に表示する必要があります。
<ListView
android:id="@+id/listView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/moreBtn"
android:layout_below="@+id/etSearch"
android:layout_marginTop="10dp" >
</ListView>