Add BOOT notification
[fonbot.git] / src / ro / ieval / fonbot / ProtectedBroadcastReceiver.java
CommitLineData
8dfb76c9
MG
1package ro.ieval.fonbot;
2
3import static ro.ieval.fonbot.R.string.*;
4
5import static ro.ieval.fonbot.Utils.toNonNull;
6
7import org.eclipse.jdt.annotation.Nullable;
8
9import ro.ieval.fonbot.Utils.MessageType;
10import android.content.BroadcastReceiver;
11import android.content.Context;
12import android.content.Intent;
13
14/*
15 * Copyright © 2013 Marius Gavrilescu
16 *
17 * This file is part of FonBot.
18 *
19 * FonBot is free software: you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License as published by
21 * the Free Software Foundation, either version 3 of the License, or
22 * (at your option) any later version.
23 *
24 * FonBot is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
28 *
29 * You should have received a copy of the GNU General Public License
30 * along with FonBot. If not, see <http://www.gnu.org/licenses/>.
31 */
32
33/**
34 * BroadcastReceiver that receives various broadcasts sent by the sistem
35 *
36 * @author Marius Gavrilescu <marius@ieval.ro>
37 */
38public final class ProtectedBroadcastReceiver extends BroadcastReceiver {
39 @Override
40 public void onReceive(@Nullable final Context context, @Nullable final Intent intent) {
41 if(context==null || intent==null)
42 return;
43
44 final String action=intent.getAction();
45
46 if(action.equals(Intent.ACTION_BATTERY_LOW)){
47 Utils.sendMessage(context, toNonNull(MessageType.BATTERY),
48 toNonNull(context.getString(battery_low)));
49 Heavy.describeBatteryLevel(context, null, toNonNull(MessageType.BATTERY));
50 } else if(action.equals(Intent.ACTION_BATTERY_OKAY)){
51 Utils.sendMessage(context, toNonNull(MessageType.BATTERY),
52 toNonNull(context.getString(battery_okay)));
53 Heavy.describeBatteryLevel(context, null, toNonNull(MessageType.BATTERY));
582cbf06
MG
54 } else if(action.equals(Intent.ACTION_BOOT_COMPLETED)){
55 Utils.sendMessage(context, toNonNull(MessageType.BOOT),
56 toNonNull(context.getString(device_booted)));
8dfb76c9
MG
57 }
58 }
59
60}
This page took 0.013016 seconds and 4 git commands to generate.