ด้วยเหตุผลบางประการมุมมองที่ว่างเปล่า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>
ฉันจะเชื่อมต่อมุมมองที่ว่างเปล่าอย่างเหมาะสมได้อย่างไร?