我有一个开关首选项,并希望它在 xml 中默认为“ON”...
<SwitchPreference
android:defaultValue="true"
android:key="PromoNotificationOnOff"
android:title="@string/Snotification_enable" />
而在课堂上,
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Load the preferences from an XML resource
addPreferencesFromResource(R.xml.settings);
}
为什么它不工作?什么不见了?谢谢!!