ListView가 비어 있을 때 빈공간에 비어 있다고 표시를 해주는 것에 대하여 정리



1. ListView 가 있는 XML에 view 넣기 

   TextView, ImageView 상관없이 넣으면 됩니다.

<LinearLayout

android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/list"
/>

<TextView

        android:id="@+id/empty_text"

android:layout_width="match_parent"
android:layout_height="match_parent"

        android:text="빈 공간"                   //빈공간에 띄워질 텍스트

        android:visibility="gone"

>

</LinearLayout>


주의!  ListView 바로 밑에 View를 만들어 줘야 합니다




2.   setEmptyView 함수 사용! 만들어준 TextView 추가해주기



     




---------------------------------------------------------------------------



---------------------------------------------------------------------------








+ Recent posts