android 如何保存用户输入的文本?
对于我最新的应用程序,它将保存多个编辑文本,用户可以在其中输入内容。就像说,如果它是一个笔记应用程序,我将如何让它们保存?
For my newest app it it one that will save multiple EditTexts where the user can enter stuff.Like say if it was a note app,how would i get them to save?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Android 上存储数据的方式有多种。了解数据存储。
在您的情况下,您可能有多个带有一些元数据的文本记录(创建时间等),所以我建议使用数据库。
There are multiple ways to store data on Android. Read about data storage.
In your case you might have multiple text records with some metadata (time when created, etc..), so I'd recommend the database.
查看如何使用 android 的“SharedPreferences”存储首选项:
http:// /www.javacodegeeks.com/2011/01/android-quick-preferences-tutorial.html
这样您就可以无限期地将您正在使用的任何内容存储为字符串、对象等。此外,您还可以了解如何使用 android 的 SQLite 数据库,当您开始使用它时可能会更难弄清楚,但随着时间的推移它会变得更容易。
Check out how to store preferences with android's "SharedPreferences":
http://www.javacodegeeks.com/2011/01/android-quick-preferences-tutorial.html
This way you can indefinitely store whatever you're working with as a string, object, etc. Also, you can check out how to work with android's SQLite Database, which might be harder to figure out when you start working with it, but it gets easier over time.