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.
我想在不编写 XML 布局文件的情况下创建首选项屏幕。我想将设置存储在 SQLite 数据库中。这可能吗?
您可以简单地创建一个首选项层次结构(可能在onCreate()中PreferenceFragment):
onCreate()
PreferenceFragment
PreferenceScreen screen = new PreferenceScreen();
并将首选项添加到screenusing addPreference。在PreferenceFragment(或PreferenceActivity,如果您不使用片段)中,只需setPreferenceScreen在构建层次结构后调用它。
screen
addPreference
PreferenceActivity
setPreferenceScreen