バッテリーの状態に BroadcastReceiver を使用しようとしていますが、そのレベルが 20% 未満で充電されていないときに何かを実行しようとしています。問題は、バッテリーが 20% になると機能しないことです。
これがコードです。誰かが私を助けてくれることを願っています:
public class BatteryStateReceiver extends Activity {
AccionesExecuter Ejecutor = new AccionesExecuter();
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.registerReceiver(this.batteryInfoReceiver, new IntentFilter(Intent.ACTION_BATTERY_CHANGED));
}
private BroadcastReceiver batteryInfoReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context contexto, Intent intent) {
Log.e("ReceiverBatería", "Recibió");
int level= intent.getIntExtra(BatteryManager.EXTRA_LEVEL,0);
int plugged= intent.getIntExtra(BatteryManager.EXTRA_PLUGGED,0);
if(level <= 20 && plugged == 0)
{
Log.e("If", "Entró");
Action ac = new Action(0, 0, 0, false);
//ACTIONS
ActionsSQLite base = new ActionsSQLite(contexto, "Actions", null,1);
SQLiteDatabase db1 = base.getReadableDatabase();
db1 = contexto.openOrCreateDatabase("Actions",SQLiteDatabase.OPEN_READONLY, null);
String query = "SELECT * FROM Actions WHERE IdEvento = 2";
Cursor c1 = db1.rawQuery(query, null);
try{
if(c1!=null){
int i = c1.getColumnIndexOrThrow("Id");
int j = c1.getColumnIndexOrThrow("IdAccion");
int k = c1.getColumnIndexOrThrow("IdEvento");
int l = c1.getColumnIndexOrThrow("Activa");
boolean esActiva;
//Nos aseguramos de que existe al menos un registro
while(c1.moveToNext()){
if (c1.getInt(l) == 0){
esActiva = false;
} else
{
esActiva = true;
}
//Recorremos el cursor hasta que no haya más registros
ac = new Action(c1.getInt(i), c1.getInt(j), c1.getInt(k), esActiva);
if (esActiva == true){ //Si está activa, la ejecuta, sino no
Ejecutor.execute(contexto, ac.getIdAccion());
Log.e("Action ejecutada, Id: ", String.valueOf(ac.getId()));
}
}
}
else
Toast.makeText(contexto,
"No hay nada :(", Toast.LENGTH_LONG).show();
}
catch (Exception e){
Log.i("bdActions", "Error al abrir o crear la base de datos" + e);
}
if(db1!=null){
db1.close();
}
}
}
};
}