ListView.setEmptyView不起作用

来源:互联网 发布:ios图片模糊软件 编辑:程序博客网 时间:2024/06/02 01:09

可能的原因1. 修改布局文件,使得ListView和EmptyView是兄弟的关系,在一个parent布局的下面。


例如:

<FrameLayout
        android:layout_width="match_parent"
        android:layout_height="0dip"
        android:layout_weight="1" >

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

    <ImageView
            android:id="@android:id/empty"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:src="#88000000"
            android:visibility="gone"/>
</FrameLayout>

0 0
原创粉丝点击