18
18
19
19
import androidx .annotation .RequiresApi ;
20
20
21
- public class ConnectionStateService extends Service
22
- {
23
-
21
+ public class ConnectionStateService extends Service {
24
22
private BroadcastReceiver ConnectionStateReceiver ;
25
23
private Notification .Builder builder ;
26
- private String state_online = "Connection Status — Online" ;
27
- private String state_offline = "Connection Status — Offline" ;
24
+ private final String state_online = "Connection Status — Online" ;
25
+ private final String state_offline = "Connection Status — Offline" ;
28
26
29
27
private ScreenStateReceiver ScrStateRec ;
30
28
private IntentFilter intentFilter ;
@@ -42,9 +40,8 @@ public void onReceive(final Context context, final Intent intent)
42
40
NetworkInfo WiFi_NI = CM .getNetworkInfo (ConnectivityManager .TYPE_WIFI );
43
41
boolean isConnected = WiFi_NI != null && WiFi_NI .isConnected ();
44
42
43
+ Intent ServiceIntent = new Intent (ConnectionStateService .this , NotificationService .class );
45
44
if (isConnected ) {
46
- Intent ServiceIntent = new Intent (ConnectionStateService .this , NotificationService .class );
47
-
48
45
if (android .os .Build .VERSION .SDK_INT < 26 ) {
49
46
startService (ServiceIntent );
50
47
} else {
@@ -59,7 +56,7 @@ public void onReceive(final Context context, final Intent intent)
59
56
showOnlineNotificationAPI21 (context );
60
57
}
61
58
62
- Boolean keyStartStopScrnStateNtfc = new SharedPreferencesManager (getApplicationContext ()).retrieveBoolean (SettingsActivity .KEY_PREF_STRT_STOP_SRVC_CHECK , MainActivity .startStopSrvcScrnState );
59
+ boolean keyStartStopScrnStateNtfc = new SharedPreferencesManager (getApplicationContext ()).retrieveBoolean (SettingsActivity .KEY_PREF_STRT_STOP_SRVC_CHECK , MainActivity .startStopSrvcScrnState );
63
60
64
61
if (keyStartStopScrnStateNtfc ) {
65
62
registerReceiver (ScrStateRec , intentFilter );
@@ -77,10 +74,8 @@ public void onReceive(final Context context, final Intent intent)
77
74
isHandlerPosted = false ;
78
75
}
79
76
}
80
-
81
77
isNotificationServiceRunning = true ;
82
78
} else {
83
- Intent ServiceIntent = new Intent (ConnectionStateService .this , NotificationService .class );
84
79
if (isNotificationServiceRunning ) {
85
80
sendBroadcast (new Intent (ConnectionStateService .this , NotificationService .NotificationServiceStopReceiver .class ).setAction ("ACTION_STOP_FOREGROUND" ));
86
81
stopService (ServiceIntent );
@@ -264,25 +259,22 @@ public void showOfflineNotificationAPI21(Context context) {
264
259
/// END ///
265
260
}
266
261
267
- private Handler handler = new Handler (Looper .getMainLooper ());
268
- private Runnable runnable = new Runnable () {
262
+ private final Handler handler = new Handler (Looper .getMainLooper ());
263
+ private final Runnable runnable = new Runnable () {
269
264
@ Override
270
265
public void run () {
271
266
Intent ServiceIntent = new Intent (ConnectionStateService .this , NotificationService .class );
272
- if (ScreenStateReceiver .screenState == true ) {
273
- if (isNotificationServiceRunning == false ) {
267
+ if (ScreenStateReceiver .screenState ) {
268
+ if (! isNotificationServiceRunning ) {
274
269
if (android .os .Build .VERSION .SDK_INT < 26 ) {
275
270
startService (ServiceIntent );
276
- isNotificationServiceRunning = true ;
277
271
} else {
278
272
startForegroundService (ServiceIntent );
279
- isNotificationServiceRunning = true ;
280
273
}
274
+ isNotificationServiceRunning = true ;
281
275
}
282
- }
283
-
284
- if (ScreenStateReceiver .screenState == false ) {
285
- if (isNotificationServiceRunning == true ) {
276
+ } else {
277
+ if (isNotificationServiceRunning ) {
286
278
sendBroadcast (new Intent (ConnectionStateService .this , NotificationService .NotificationServiceStopReceiver .class ).setAction ("ACTION_STOP_FOREGROUND" ));
287
279
stopService (ServiceIntent );
288
280
isNotificationServiceRunning = false ;
@@ -428,7 +420,7 @@ public int onStartCommand(Intent intent, int flags, int startId)
428
420
Intent intentActionStop = new Intent (this , ActionButtonReceiver .class );
429
421
intentActionStop .setAction ("ACTION_STOP_CONN_STATE_SERVICE" );
430
422
PendingIntent pIntentActionStop = PendingIntent .getBroadcast (this , 0 , intentActionStop , PendingIntent .FLAG_ONE_SHOT | PendingIntent .FLAG_IMMUTABLE );
431
-
423
+
432
424
Notification notification = builder .setSmallIcon (R .drawable .ic_wifi_fail )
433
425
.setContentTitle (state_offline )
434
426
.setWhen (System .currentTimeMillis ())
@@ -445,7 +437,6 @@ public int onStartCommand(Intent intent, int flags, int startId)
445
437
/// ANDROID 5 - ANDROID 7 ///
446
438
int NOTIFICATION_ID = 1306 ;
447
439
448
- NotificationManager notificationManager = (NotificationManager ) getSystemService (Context .NOTIFICATION_SERVICE );
449
440
builder = new Notification .Builder (this );
450
441
451
442
Intent intentActionStop = new Intent (this , ActionButtonReceiver .class );
@@ -485,5 +476,4 @@ public IBinder onBind(Intent intent)
485
476
{
486
477
return null ;
487
478
}
488
-
489
479
}
0 commit comments