如何在 Android 中存储聊天记录
我正在开发一个使用 ASmack 库发送和接收 IM 的 XMPP 客户端应用程序。我想存储用户之间的聊天记录。此历史记录必须持续存在,直到我通过单击按钮清除聊天。
维护聊天历史记录的最佳方法是什么,任何片段都会有很大帮助。
I am working on an XMPP client app that sends and receives IM using ASmack library. I want to store the Chatting history among the users. This history must be persistent until i clear the chat by clicking a button.
What is the best possible way to maintain the chat history and any snippets will be of great help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想到了一个简单的 Sqlite 数据库。然后,您可以根据需要保存所有聊天的所有历史记录。并有选择地删除一个聊天会话而不是另一个。
请参阅:http://developer.android.com/guide/topics /data/data-storage.html#db
您会在互联网上找到很多简单的教程。
A simple Sqlite database comes to mind. You could then save all history of all chats for as long as you need. And selectively erase one chat session and not another.
See : http://developer.android.com/guide/topics/data/data-storage.html#db
And you'll find a lot of easy tutorial to follow along on the interweb.