程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> listview-當列表視圖是空的時,如何顯示空視圖?

listview-當列表視圖是空的時,如何顯示空視圖?

編輯:編程綜合問答
當列表視圖是空的時,如何顯示空視圖?

以下是我設計的布局:
不知道什麼原因,即使列表都不是空的,但是視圖(在這個案例中是TextView)總是出現空視圖。我以為列表會自動檢測到什麼時候顯示空視圖。
如何正確檢測空視圖呢?

elativeLayout android:id="@+id/LinearLayoutAR"
            android:layout_height="fill_parent" android:layout_width="fill_parent">
            <ListView android:layout_width="fill_parent"
                android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android"
                android:id="@+id/ARListView"></ListView>
            <ProgressBar android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:id="@+id/arProgressBar"
                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>

最佳回答:


應該是:

<TextView android:id="@android:id/empty" android:layout_width="match_parent"
            android:layout_height="match_parent" android:text="No Results" />

注意id的屬性

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved