mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-05-14 14:02:49 +00:00
34 lines
945 B
Java
34 lines
945 B
Java
|
package com.beemdevelopment.aegis.services;
|
||
|
|
||
|
import android.content.Intent;
|
||
|
import android.os.Build;
|
||
|
import android.service.quicksettings.Tile;
|
||
|
import android.service.quicksettings.TileService;
|
||
|
|
||
|
import androidx.annotation.RequiresApi;
|
||
|
|
||
|
import com.beemdevelopment.aegis.ui.MainActivity;
|
||
|
|
||
|
@RequiresApi(api = Build.VERSION_CODES.N)
|
||
|
public class LaunchScannerTileService extends TileService {
|
||
|
|
||
|
@Override
|
||
|
public void onStartListening() {
|
||
|
super.onStartListening();
|
||
|
Tile tile = getQsTile();
|
||
|
tile.setState(Tile.STATE_INACTIVE);
|
||
|
tile.updateTile();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onClick() {
|
||
|
super.onClick();
|
||
|
|
||
|
Intent intent = new Intent(this, MainActivity.class);
|
||
|
intent.putExtra("action", "scan");
|
||
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
|
||
|
intent.setAction(Intent.ACTION_MAIN);
|
||
|
|
||
|
startActivityAndCollapse(intent);
|
||
|
}
|
||
|
}
|