CompartidoPreferencias y booleano

Estoy intentando configurar "isPhysicalTheftEnabled" como falso cuando se ejecuta un método, pero esto no parece funcionar. ¿Alguien tiene alguna idea?

        SharedPreferences sp = getSharedPreferences("isPhysicalTheftEnabled", MODE_WORLD_READABLE);
        SharedPreferences.Editor ed = sp.edit();
        ed.putBoolean("isPhysicalTheftEnabled", false);

Respuestas a la pregunta(3)

Su respuesta a la pregunta