Android 问题,在 http 请求之后/之前向列表视图添加/删除对话框
在我的应用程序中,我执行一个异步任务从 mysql 数据库下载信息,然后将其显示在使用扩展基本适配器的自定义适配器的列表视图中。每行在单独的文本视图中显示对象的相同 3 列信息。
所以看起来像
第 1 行:TextView1 - TextView2 - TextView3
第 2 行:TextView1 - TextView2 - TextView3
第 3 行:TextView1 - TextView2 - TextView3
等等。
我的问题是,与其在下载所有信息开始时出现一个大对话框并让用户等待其更新,是否可以在每一行中放置一个小对话框,一旦更新,显示对话框所在位置的文本?
所以更新开始时看起来像这样:
第 1 行:对话框
第 2 行:对话框
Row3 : Dialog
然后在收到 row1 的所有信息后:
第 1 行:TextView1 - TextView2 - TextView3
第 2 行:对话框
第 3 行:对话框
ETC....
In my app I do an async task to download information from my mysql db and then display it in a listview that uses a custom adapter that extends a baseadapter. Each row displays the same 3 columns of information for the object in seperate textviews.
So it looks like
Row1 : TextView1 - TextView2 - TextView3
Row2 : TextView1 - TextView2 - TextView3
Row3 : TextView1 - TextView2 - TextView3
etc..
My question is, rather then having a one large dialog appear at the start of downloading all the information and making the user wait for it to update, is it possible to put a small dialog in each row and once it has updated, display the text where the dialog was?
So it would look like this at the beginning of updating:
Row1 : Dialog
Row2 : Dialog
Row3 : Dialog
Then after recieving all the information for row1:
Row1 : TextView1 - TextView2 - TextView3
Row2 : Dialog
Row3 : Dialog
etc....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的。事实上,对于包含图像等大数据的列表,最佳实践之一是放置一个支架,然后在准备好后立即显示它。为此,您需要创建替代列表,开始异步任务来填充它,并在完成一行后调用
onProgressUpdate()
将其正确放置在列表中,并notifyDataSetChanged( )
显示它Yes it is possible. In fact one of the best practices for lists containing large data like images is to put in a stand in and then display it as soon as it is ready. To accomplish that you will need to create the stand in list, begin the async task to populate it, and upon completing a row call
onProgressUpdate()
to place it in the list properly andnotifyDataSetChanged()
to display it