如何在Android中配置应用程序设置?
在我的应用程序中,我必须为用户保留一些设置选项,例如货币类型、语言、日历视图(日历或列表)等。
在这里,我很困惑是否必须通过创建数据库表来配置所有这些,还是应该将其保留在任何 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 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
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
解决方案是使用 共享首选项
您也可以查看PreferenceActivity,它有助于构建设置页面。
The solution would be to use shared preference
You can also look into PreferenceActivity which helps in building a setting page.