Android 处理空列表的方法(必看篇)
程序员文章站
2023-08-21 22:05:17
android中listview 用来展示数据,如果列表为空的状态,可以通过setempty(view)方法设置为空时显示的内容。
布局xml
android中listview 用来展示数据,如果列表为空的状态,可以通过setempty(view)方法设置为空时显示的内容。
布局xml
<framelayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <listview android:id="@+id/my_list_view" android:layout_width="fill_parent" android:layout_height="fill_parent" /> <imageview android:id="@+id/empty_view" android:layout_width="fill_parent" android:layout_height="fill_parent" android:src="@drawable/empty_view" /> </framelayout>
代码:
public class hack24activity extends activity { private listview mlistview; @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_hack24); mlistview = (listview) findviewbyid(r.id.my_list_view); mlistview.setemptyview(findviewbyid(r.id.empty_view)); } }
以上这篇android 处理空列表的方法(必看篇)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: 清朝的宫女不能仰面睡觉?清朝宫女有哪些严格的规矩?
下一篇: 快速处理ListView为空的情况