QuickTileService: require phone be unlocked
Reported-by: Simon <simon@laro.se> Reported-by: Harsh Shandilya <me@msfjarvis.dev> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
parent
b67fa3a38c
commit
1e5596f977
@ -60,12 +60,14 @@ public class QuickTileService extends TileService {
|
|||||||
@Override
|
@Override
|
||||||
public void onClick() {
|
public void onClick() {
|
||||||
if (tunnel != null) {
|
if (tunnel != null) {
|
||||||
final Tile tile = getQsTile();
|
unlockAndRun(() -> {
|
||||||
if (tile != null) {
|
final Tile tile = getQsTile();
|
||||||
tile.setIcon(tile.getIcon() == iconOn ? iconOff : iconOn);
|
if (tile != null) {
|
||||||
tile.updateTile();
|
tile.setIcon(tile.getIcon() == iconOn ? iconOff : iconOn);
|
||||||
}
|
tile.updateTile();
|
||||||
tunnel.setState(State.TOGGLE).whenComplete(this::onToggleFinished);
|
}
|
||||||
|
tunnel.setState(State.TOGGLE).whenComplete(this::onToggleFinished);
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
final Intent intent = new Intent(this, MainActivity.class);
|
final Intent intent = new Intent(this, MainActivity.class);
|
||||||
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||||
|
Loading…
Reference in New Issue
Block a user