如何在Android中配置应用程序设置?

发布于 2024-11-01 23:59:39 字数 129 浏览 4 评论 0原文

在我的应用程序中,我必须为用户保留一些设置选项,例如货币类型、语言、日历视图(日历或列表)等。

在这里,我很困惑是否必须通过创建数据库表来配置所有这些,还是应该将其保留在任何 xlm 或文本文件。请问有什么更方便的方法吗?谢谢。

In my application I have to keep some setting options for a user, like currency type, language, Calendar view (Either Calendar or List) etc.

Here I am confused whether I have to configure all this by creating database tables or should keep this in any xlm or text file. Please guide if there any more convenient way? thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

木有鱼丸 2024-11-08 23:59:39

您可以使用 android 共享首选项 来存储用户偏好。或者,如果您创建一个具有要访问的静态或实例变量的应用程序实例,则可以存储“全局”变量(但如果您的 Activity 被销毁,这些值可能会丢失)

此线程有有关全局应用程序存储应用程序范围变量的详细信息

希望有帮助

you can use android shared preferences to store a users preferences. Alternatively you can store "global" variables if you create a Application instance which has static or instance variables to access (but these values can be lost if your Activity is destroyed)

The answer on this thread has details on global application to store application wide variables

Hope that helps

掩于岁月 2024-11-08 23:59:39

Android 专门为此目的提供了共享首选项。
http://developer.android.com/reference/android/content/SharedPreferences.html

Android has Shared Preference specifically for this purpose.
http://developer.android.com/reference/android/content/SharedPreferences.html

万人眼中万个我 2024-11-08 23:59:39

解决方案是使用 共享首选项

您也可以查看PreferenceActivity,它有助于构建设置页面。

The solution would be to use shared preference

You can also look into PreferenceActivity which helps in building a setting page.

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