gpt4 book ai didi

Android ListView Adapter 如何检测空列表?

转载 作者:可可西里 更新时间:2023-11-01 19:04:42 24 4
gpt4 key购买 nike

我的 Activity 中有一个 ListView,它从 SimpleAdapter 的扩展类中获取值。当我在其中添加或删除一些数据时,它可以正常工作。

但我的问题是,当我的项目列表为空时,我想用“这里没有项目”之类的消息替换 listView。

我试过这样做:

class FavAdapter extends SimpleAdapter{
Activity context;
ArrayList<HashMap<String,String>> data;
String[] items;
int[] champs;
int layout;

FavAdapter(Activity _context, ArrayList<HashMap<String,String>> _data, int _layout, String[] _items, int[] _champs){
super(_context, _data, _layout, _items, _champs );
this.data = _data;
this.context = _context;
this.items = _items;
this.layout = _layout;
this.champs = _champs;
}

public View getView(int pos, View convertView, ViewGroup parent){
//Recycling
View row = convertView;
//Else get from XML
if(row == null){
LayoutInflater infla = context.getLayoutInflater();
row = infla.inflate(layout, null);
}

//If there are data
if(data.size() > 0){
/**** Here I am correctly constructing row *****/
...
}
//Else
else{
TextView txt = new TextView(ActivityFavoris.this);
txt.setText("Not data inhere");
LinearLayout ll = (LinearLayout) row.findViewById(R.id.result_lyt_principal);
ll.addView(txt);
}
return row;
}

问题是:我的列表从来没有大小为 0。事实上,当数据为空时,不会调用适配器。

有人可以用另一种方式向我解释如何做到这一点吗?提前致谢。

编辑: 使用您的答案我成功了。我的解决方案是:setContentView 必须与 findViewById(android.R.id.empty) 一起使用,但是如果像我一样你的 Activity 中有两个不同的 listView,它们需要不同的空 View ,你将不得不在不同的布局中找到它。这样android会在listview为空的时候自动调用右边的view,而data.size为0时adapter中什么都不用做。

示例:在 Activity 中:

public void onCreate(Bundle b){
super.onCreate(b);
lv1 = (ListView) findViewById(R.id.listviewone);
lv2 = (ListView) findViewById(R.id.listviewtwo);
//****set listview adater***//
...
//set empty view
lv1.setEmptyView(findViewById(R.id.layoutone).findViewById(android.R.id.empty));
lv2.setEmptyView(findViewById(R.id.layouttwo).findViewById(android.R.id.empty));
}

使用那个 xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<LinearLayout
android:id="@+id/layoutone"
android:orientation="horizontal"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<ListView
android:id="@+id/listviewone"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />

<TextView
android:id="@android:id/empty"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Pas de favoris enregistrées" />

</LinearLayout>

<LinearLayout
android:id="@+id/layouttwo"
android:orientation="horizontal"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<ListView
android:id="@+id/listviewtwo"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />

<TextView
android:id="@android:id/empty"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Pas de favoris enregistrées" />

</LinearLayout>

最佳答案

使用方法setEmptyView它将 View 设置为在适配器为空时显示。

关于Android ListView Adapter 如何检测空列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6534740/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com