Hi There,
I've created an application that will work on kiosks following this guide:
The application has a screen with two buttons:
What's happening is that after I press the Lock button (and Android gets locked, no back buttons, no close application) I can't start the other application I also need to start.
Isn't this possible? Opening an application after the device has been Pinned?
Thanks in advance.
I've created an application that will work on kiosks following this guide:
Device Owner / TaskLock / Kiosk apps 2017
Starting from Android 5 (API 21) there is better support for kiosk applications. Kiosk applications = applications that the user cannot exit from. As you can see in this screenshot, the home button and recent apps button are missing. The top notifications drawer is also inaccessible. This...
www.b4x.com
The application has a screen with two buttons:
- Lock
- Start API Server
B4X:
Dim pm As PackageManager
Dim in As Intent
in = pm.GetApplicationIntent("org.myapp.api")
If in.IsInitialized Then
StartActivity(in)
End If
What's happening is that after I press the Lock button (and Android gets locked, no back buttons, no close application) I can't start the other application I also need to start.
Isn't this possible? Opening an application after the device has been Pinned?
Thanks in advance.