标签: android listview android-listview android-arrayadapter android-cursoradapter
哪个是用于显示聊天消息的listview的最佳适配器?
这是因为当我使用cursoradapter,并且接收或发送新消息时,我必须更改我的cursoradapter子类正在使用的光标。结果是用户会在列表视图中看到所有聊天消息已刷新,但这并不好。
另一方面,当我使用arrayadapter时,所有聊天消息都需要花费时间从数据库加载,存储在arraylist中,然后填充在我的listview 中,这会导致我的活动<强烈>悬挂一段时间。