其他分享
首页 > 其他分享> > android – setEmptyView()似乎不适用于(Sherlock)ListFragment

android – setEmptyView()似乎不适用于(Sherlock)ListFragment

作者:互联网

我有一个ListFragment,我想设置它的空视图,所以我使用以下代码:

View emptyView = getLayoutInflater().inflate(R.layout.collection_empty_view, null);
detailFragment.getListView().setEmptyView(emptyView);

对于以下xml布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/empty"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/tv_empty"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:gravity="center"
        android:text="@string/empty_collection" />

    <Button
        android:id="@+id/btn_add_legislation"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="addText"
        android:text="@string/action_add_text" />

</LinearLayout>

但没有出现!

我尝试了detailFragment.getListView().setEmptyText(),这确实有效!我做错了吗?

解决方法:

空视图必须与列表视图位于同一视图层次结构中.以这种方式膨胀是行不通的.

通常我会以下面的格式创建一个布局:

<Layout>
    <ListView/>
    <View android:id="@+id/empty"/>
</Layout>

其中空视图是我想用作“空视图”的视图.然后在创建中,我获得对空视图的引用,并使用该引用调用setEmptyView().

以下是Android文档中的示例(查看documentation,它应该适用于SherlockListFragment):

 <?xml version="1.0" encoding="utf-8"?>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
         android:orientation="vertical"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         android:paddingLeft="8dp"
         android:paddingRight="8dp">

     <ListView android:id="@id/android:list"
               android:layout_width="match_parent"
               android:layout_height="match_parent"
               android:background="#00FF00"
               android:layout_weight="1"
               android:drawSelectorOnTop="false"/>

     <TextView android:id="@id/android:empty"
               android:layout_width="match_parent"
               android:layout_height="match_parent"
               android:background="#FF0000"
               android:text="No data"/>
 </LinearLayout>

标签:android-listfragment,android,android-listview,actionbarsherlock
来源: https://codeday.me/bug/20190725/1533916.html