티스토리 뷰


보통 ListView 는 위에서부터 item 이 채워진다.
아래부터 item 을 채우려면 아래와 같이 stackFromBottom 속성을 true 로 주면된다.

     <ListView android:id="@android:id/list"
        android:layout_width="fill_parent"
        android:layout_height="0dip"
        android:layout_weight="1"
        android:stackFromBottom="true"
        android:transcriptMode="normal"/>
     </LinearLayout>


[작성자] devbible.tistory.com


댓글