2010-06-30 4 views
1

아래에 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> 

답변

2

addFooterView()으로 추가하십시오. ListView가 여전히 스크롤되는 동안이 방법은 항상 화면 아래쪽에 나타납니다.