Итак, это просто не работает.
CheckBox chck_bluetooth = (CheckBox) findViewById(R.id.chck_bluetooth);
if (mProperties.getProperty("bluetooth") == "true") {
chck_bluetooth.setChecked(true);
Log.i("Properties", "bluetooth = " + mProperties.getProperty("bluetooth"));
} else {
chck_bluetooth.setChecked(false);
Log.i("Properties", "bluetooth = " + mProperties.getProperty("bluetooth"));
}
Что ж, в журнале сказано, что для bluetooth установлено значение "true", поэтому, я думаю, должна быть проблема с флажком.