java - Android - Lockdown All Other Apps -
I am currently creating that app for which you have to specify the amount of time to lockdown in that app the wanted. Basically, it disables all other functions (notifications, home, back, long press, etc.) for the amount of time determined by the user, I believe it is called kiosk mode.
Is it possible to do this by using Android SDK? If so, how can this be achieved?
Thank you in advance, ~ Pkmmte Xeleon
Yes, you can do this Unfortunately SDK will not provide much help, so you have to go with manual tweaking. In the background, a service would be killing all running processes except your app. You can disable the Home key. I do not remember the exact method name, so search for it. To disable the override key back () / on backpress ().
Comments
Post a Comment