카테고리 없음

스크롤뷰 안에 리스트뷰 높이 조절

[czar] 2012. 5. 14. 17:00

http://lopiter.tistory.com/entry/Listview-in-Scrollview


 <ScrollView 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent"
     android:fillViewport="true"
     android:layout_gravity="top|center">
     <ListView android:id="@+id/pntCpnList"
         android:layout_weight="1"
      android:layout_gravity="top|center" 
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      android:listSelector="#00000000"
      android:cacheColorHint="#00000000" />
    </ScrollView>  


android:fillViewport="true"
이 속성을 추가하면 Listview를 꽉채울수 있다.


리스트뷰 아래에 더보기 버튼 추가해야하면 높이는?