2019-05-31 05:05:50 +03:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
using Android.App;
|
|
|
|
|
using Android.Content;
|
|
|
|
|
using Android.OS;
|
|
|
|
|
using Android.Runtime;
|
|
|
|
|
using Android.Service.QuickSettings;
|
|
|
|
|
using Android.Views;
|
|
|
|
|
using Android.Widget;
|
|
|
|
|
using Java.Lang;
|
|
|
|
|
|
|
|
|
|
namespace Bit.Droid.Tile
|
|
|
|
|
{
|
2019-06-05 23:37:54 +03:00
|
|
|
|
[Service(Permission = Android.Manifest.Permission.BindQuickSettingsTile, Label = "@string/PasswordGenerator",
|
|
|
|
|
Icon = "@drawable/refresh_sm")]
|
2019-05-31 05:05:50 +03:00
|
|
|
|
[IntentFilter(new string[] { ActionQsTile })]
|
2019-06-05 23:37:54 +03:00
|
|
|
|
[Register("com.x8bit.bitwarden.GeneratorTileService")]
|
|
|
|
|
public class GeneratorTileService : TileService
|
2019-05-31 05:05:50 +03:00
|
|
|
|
{
|
|
|
|
|
public override void OnTileAdded()
|
|
|
|
|
{
|
|
|
|
|
base.OnTileAdded();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void OnStartListening()
|
|
|
|
|
{
|
|
|
|
|
base.OnStartListening();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void OnStopListening()
|
|
|
|
|
{
|
|
|
|
|
base.OnStopListening();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void OnTileRemoved()
|
|
|
|
|
{
|
|
|
|
|
base.OnTileRemoved();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void OnClick()
|
|
|
|
|
{
|
|
|
|
|
base.OnClick();
|
|
|
|
|
|
|
|
|
|
if(IsLocked)
|
|
|
|
|
{
|
|
|
|
|
UnlockAndRun(new Runnable(() =>
|
|
|
|
|
{
|
|
|
|
|
LaunchMyVault();
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
LaunchMyVault();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void LaunchMyVault()
|
|
|
|
|
{
|
2019-06-05 22:09:13 +03:00
|
|
|
|
var intent = new Intent(this, typeof(MainActivity));
|
2019-05-31 05:05:50 +03:00
|
|
|
|
intent.SetFlags(ActivityFlags.NewTask | ActivityFlags.SingleTop | ActivityFlags.ClearTop);
|
2019-06-05 23:37:54 +03:00
|
|
|
|
intent.PutExtra("generatorTile", true);
|
2019-05-31 05:05:50 +03:00
|
|
|
|
StartActivityAndCollapse(intent);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|