아래에 Button이있는 ListView가 있습니다. 화면 크기보다 많은 내용으로 목록을 채울 때 스크롤 막대가 나타나도록 단추는 스크롤 가능한 영역의 일부가 아닙니다. 즉, 버튼이 사라집니다. 스크롤 영역의 Button 부분을 어떻게 만드나요?Button을 스크롤 가능한 ListView의 일부로 만들려면 어떻게해야합니까?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ListView android:id="@+id/ListView" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_above="@+id/AddButton" />
<Button android:id="@+id/AddButton" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="@string/add_title" />
</RelativeLayout>