欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android 处理空列表的方法(必看篇)

程序员文章站 2023-08-21 22:05:17
android中listview 用来展示数据,如果列表为空的状态,可以通过setempty(view)方法设置为空时显示的内容。 布局xml

android中listview 用来展示数据,如果列表为空的状态,可以通过setempty(view)方法设置为空时显示的内容。

Android 处理空列表的方法(必看篇)

布局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 处理空列表的方法(必看篇)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。