Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Kiosk mode in Android at runtime

Tags:

android

kiosk

Setting any application in Kiosk mode in run time and maintaining its state even after switching off the device in android.

We have created an application which display the list of all the installed application in the android. We select few of the application to run in kiosk mode. Now we want that even after restarting the device, application should be in kiosk mode.

But it is not happening in my case.

Kindly help us

like image 927
user2624873 Avatar asked Dec 05 '25 05:12

user2624873


1 Answers

I have Completed Kiosk mode in Android. I have two methods to handle this scenario

1.)Make your application as home launcher so it gets loaded whenever you restart the device.

2)If you dont want to make it as launcher, Then create a broadcast receiver with Boot_Completed receiver and start your application from it.

like image 73
Jai Kumar Avatar answered Dec 07 '25 20:12

Jai Kumar