어떤 이유로 빈보기 인 경우이 경우 TextView 는 ListView 가 비어 있지 않은 경우에도 항상 나타납니다 . 빈보기를 표시 할 때 ListView 가 자동으로 감지 한다고 생각했습니다 .
<RelativeLayout android:id="@+id/LinearLayoutAR"
android:layout_height="fill_parent"
android:layout_width="fill_parent">
<ListView android:id="@+id/ARListView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"></ListView>
<ProgressBar android:id="@+id/arProgressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"></ProgressBar>
<!-- Here is the view to show if the list is emtpy -->
<TextView android:id="@id/android:empty"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="No Results" />
</RelativeLayout>
빈 뷰를 올바르게 연결하려면 어떻게해야합니까?