Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含大量设置的应用程序,其中包含7 个字符串数组、3 个字符串和一个日期。是否建议将其存储到sqlite 数据库中,或者我可以使用首选项还是有其他选择?
android中设置和首选项的推荐存储是Preferences,您可以将StringArray保存到首选项中,首先将其转换为Set,然后存储到首选项中,方法是:
prefEditor.putStringSet("key", set);