0

嗨,我有一个复选框偏好,但它是真的我可以这样做吗?

Edit1 我所拥有的是

  public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
                if (key.equals(KEY_PREF_Reminder)) {

                 bool=prefs.getBoolean(key, false);
}}

如果它是假的或真的,它会得到,所以我怎么能让它在真时做呢?...

Edit2: 我需要的是让我的通知持续存在(确保每天进行一些更新),当复选框为真时,当它为假时需要删除此通知怎么做?我真的在寻找这个,但我不知道我该怎么做?有什么帮助吗?谢谢。

4

1 回答 1

0

var notificationList = new Array();

$("#checkBoxId").change(function(){

if($(this).attr('checked') == true){
    notificationsList.push("Add Notification");  // Add your notification & use it as your need
}else{
    notificationsList = [];   // clear all notifications added
}

});

于 2013-10-07T08:13:47.467 回答