在共享首选项上出现boolean问题

时间:2012-08-07 15:04:37

标签: android boolean sharedpreferences

我正在尝试在手机启动时基于布尔值false或true启动服务。问题是如果我使用getBoolean

 boolean isPhysicalSirenFlagged = sp.getBoolean("isPhysicalSirenFlagged", true);
 boolean isSMSSirenFlagged = sp.getBoolean("isSMSSirenFlagged", true);

每当手机启动时,它们都将设置为true,从而导致我的isPhysicalSirenFlagged& isSMSSirenFlagged是真的时候。是否可以检查值的当前布尔值是什么?

代码:

SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(context);
     String value = sp.getString("serial", "");
     boolean isPhysicalSirenFlagged = sp.getBoolean("isPhysicalSirenFlagged", true);
     boolean isSMSSirenFlagged = sp.getBoolean("isSMSSirenFlagged", true);

     if (isPhysicalSirenFlagged) {
         //true
         Intent physicaldialog = new Intent(context, PhysicalTheftDialog.class);
         physicaldialog.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
         context.startActivity(physicaldialog);
         context.startService(new Intent(context, PhysicalTheftService.class));
     }
     else {
         //false
     }

     if (isSMSSirenFlagged) {
         //true
         Intent smsdialog = new Intent(context, SMSNotificationPasswordDialog.class);
         smsdialog.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
         context.startActivity(smsdialog);
         context.startService(new Intent(context, RemoteSirenService.class));
     }
     else {
         //false
     }

1 个答案:

答案 0 :(得分:1)

将其设置为false,显然您正在做的事情是不对SharedPrefereces进行更改以指示该标志。通过使用false作为默认值,您将防止对标志的意外真实分配。说实话,你应该使用int标志(或首选枚举)来表示这一点。这是一种更安全的方法来确定设备所处的状态。例如:

int NO_STATE    = 0
int IS_THEFTED  = 1
int IS_WAILING  = 2

or

enum State {
    NONE, THEFTED, WAILING;
}