Android app lock app return after authentication

275 Views Asked by At

I'm trying to build an app lock application. I have created a service to monitor current running apps. And checking which app is opened, I redirects to my app lock.

When I open the app, it is guided to lock app. Till that it's ok. After successful authentication, I want to continue with my opened app. How can I achieve that?

I have used below codes to open app lock from the locked app.

      Intent i = new Intent(ServiceClass.this, AppLockActivity.class);              
      i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
      startActivity(i);

After successful authentication, I want to continue with my app, without any interaction from the app lock. How to do that?

1

There are 1 best solutions below

4
On

Simply you can call finish() to kill your AppLockActivity