将标准布局加载到 ListActivity 中
如果 ListActivity 上没有要加载的元素,我希望我的应用程序显示警告消息;所以我想在 onResume 事件上写下这个:
if(elementsToLoad.size()==0) setContentView (alternative layout); else loadList();
但它崩溃了......我该如何解决这个问题?
I'd like my App to show a warning message if there are no elements to load on a ListActivity; so I thought to write this on the onResume event:
if(elementsToLoad.size()==0) setContentView (alternative layout); else loadList();
but it crashes...How could I fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用空视图。请参阅 ListView 中的
setEmptyView(ViewemptyView)
方法。或者您可以使用 id @android:id/empty 将视图添加到您的布局中,如果列表为空,ListView 将为您显示它。You can use an empty view. See
setEmptyView(View emptyView)
method from ListView. Or you can add view to your layout with id @android:id/empty and ListView will show it for you, if list is empty.