我正在使用 sharedpreferences 框架,但在与其中一个首选项交互时遇到了一些麻烦。我想启用我的选项之一来重置我的应用程序。为此,我希望屏幕上出现一个对话框,并带有确定和取消。如果用户然后单击确定我想做一堆东西。
我可以使用 ImageView 侦听器在正常活动中编写所有这些内容。但在 SharedPreferences 框架中,我不知道如何添加侦听器和操作。我想作为额外的奖励,我还需要与当前的 SharedPreferences 状态进行交互吗?
目前我有这个 XML
<PreferenceCategory android:title="Reset App">
<Preference
android:title="Reset App?"
android:summary="Click here to reset the App to defaults."
android:key="resetapp" />
</PreferenceCategory>
<PreferenceCategory android:title="General Settings">
<CheckBoxPreference
android:title="Enable Sounds?"
android:defaultValue="true"
android:summary="A Tick here will enable sounds throughout body-mix-ology."
android:key="enablesounds" />
<CheckBoxPreference
android:title="High performance Phone?"
android:defaultValue="false"
android:summary="If you have a high performance phone tick here to speed up body switching."
android:key="highperformancephone" />
</PreferenceCategory>
这是我的类文件
public class Preferences extends PreferenceActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
addPreferencesFromResource(R.layout.preferences);
//TODO
// act on resetapp
// prompt onscreen confirmation.
}
public AlertDialog createDialog() {
return new AlertDialog.Builder(this)
.setTitle("Reset App?")
.setMessage("Are you sure? You will wipe all data from the app.")
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
Toast.makeText(getBaseContext(), "App has been reset!", Toast.LENGTH_SHORT).show();
//TODO
// clear DB
// reset sharedprefs.
}
})
.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
Toast.makeText(getBaseContext(), "App was not reset", Toast.LENGTH_SHORT).show();
}
})
.show();
}
}