mirror of https://github.com/M66B/NetGuard.git
71 lines
2.5 KiB
Java
71 lines
2.5 KiB
Java
package eu.faircode.netguard;
|
|
|
|
/*
|
|
This file is part of NetGuard.
|
|
|
|
NetGuard is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
NetGuard is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
Copyright 2015-2016 by Marcel Bokhorst (M66B)
|
|
*/
|
|
|
|
|
|
import android.annotation.TargetApi;
|
|
import android.content.SharedPreferences;
|
|
import android.os.Build;
|
|
import android.preference.PreferenceManager;
|
|
import android.service.quicksettings.Tile;
|
|
import android.service.quicksettings.TileService;
|
|
import android.util.Log;
|
|
|
|
@TargetApi(Build.VERSION_CODES.N)
|
|
public class ServiceTileGraph extends TileService implements SharedPreferences.OnSharedPreferenceChangeListener {
|
|
private static final String TAG = "NetGuard.TileGraph";
|
|
|
|
public void onStartListening() {
|
|
Log.i(TAG, "Start listening");
|
|
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
|
|
prefs.registerOnSharedPreferenceChangeListener(this);
|
|
update();
|
|
}
|
|
|
|
@Override
|
|
public void onSharedPreferenceChanged(SharedPreferences prefs, String key) {
|
|
if ("show_stats".equals(key))
|
|
update();
|
|
}
|
|
|
|
private void update() {
|
|
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
|
|
boolean stats = prefs.getBoolean("show_stats", false);
|
|
getQsTile().setState(stats ? Tile.STATE_ACTIVE : Tile.STATE_INACTIVE);
|
|
getQsTile().updateTile();
|
|
}
|
|
|
|
public void onStopListening() {
|
|
Log.i(TAG, "Stop listening");
|
|
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
|
|
prefs.unregisterOnSharedPreferenceChangeListener(this);
|
|
}
|
|
|
|
public void onClick() {
|
|
Log.i(TAG, "Click");
|
|
|
|
// Check state
|
|
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
|
|
boolean stats = !prefs.getBoolean("show_stats", false);
|
|
prefs.edit().putBoolean("show_stats", stats).apply();
|
|
ServiceSinkhole.reloadStats("tile", this);
|
|
}
|
|
}
|