可能重复:
当 ListView 为空时如何显示空视图?
我有一个关于一项活动的列表视图。listview 从 db 绑定。因此,如果 db 没有结果,那么我如何在 android 中显示“无项目”代替 listview。我已经完成了如下操作,但它在上侧显示 Empty_list,我希望它在 listview 的同一位置。
public TextView emptyshow;
lstview.setAdapter(adapter);
emptyshow=(TextView)findViewById(android.R.id.empty);
lstview.setEmptyView(findViewById(android.R.id.empty));