android 如何保存用户输入的文本?

发布于 2024-12-09 10:39:41 字数 68 浏览 0 评论 0原文

对于我最新的应用程序,它将保存多个编辑文本,用户可以在其中输入内容。就像说,如果它是一个笔记应用程序,我将如何让它们保存?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无边思念无边月 2024-12-16 10:39:41

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.

记忆之渊 2024-12-16 10:39:41

查看如何使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文