kiosk-mode

Android lock screen multiple activities (a.k.a basic kiosk mode)

故事扮演 提交于 2019-12-08 11:54:20
问题 I try to implement a kiosk mode application. I was able to lock down most of the possibilities to close the app or access system functions. Now, I was wondering, if it is possible have multiple activities in a lock screen. If I switch between multiple activities of my app, the default lock screen is shown for a short moment and then the app re-appears. If I just replace fragments, the app works like a charm. I have the following code: @Override public void onAttachedToWindow() { getWindow()

Assigned access application exits when Ctrl + Alt + Delete is pressed.

拟墨画扇 提交于 2019-12-08 03:30:50
问题 I have set up assigned access on windows 10. The breakout key is currently set to ctrl + alt + delete (the default). However it seems as though when this breakout key is used that the application exits? Is it possible to keep the application running i.e. essentially switch user instead of log off? 回答1: You can set larger time-out period in registry To sign out of an assigned access account, press Ctrl + Alt + Del, and then sign in using another account. When you press Ctrl + Alt + Del to sign

Chromium kiosk mode : Fullscreen and remove address bar

淺唱寂寞╮ 提交于 2019-12-07 08:44:25
问题 I am trying to run chromium browser in kiosk mode in raspberry pi 3(Official Jessie ). Here is i've added in my autostart file @point-rpi @xset s noblank @xset s off @xset -dpms @chromium-browser --kisok www.fb.com This works fine but some problem occured. Browser is not opened in full window also the address bar is still present in chromium So how can i remove above two items 回答1: I had a similar issue ... I eventually used this in a .xinitrc file in the home directory. #Disable DPMS. xset

How to stop “holding the back button” from escaping “Lock Task mode” on Android 7+

泄露秘密 提交于 2019-12-06 08:38:28
问题 I'm attempting to use "Lock Task mode", as described on https://developer.android.com/work/cosu.html My goal is to have a single app running in a "kiosk mode", so that the user cannot leave the app. I'm using Google's "Test DPC" app from Google Play as the DPC, which I have made the owner of the device via: adb shell dpm set-device-owner com.afwsamples.testdpc/.DeviceAdminReceiver . It all works really well at keeping a trivial app (which calls startLockTask() ) in kiosk mode. (I have added

How to build software limiting user action to one single App on Android?

泪湿孤枕 提交于 2019-12-06 06:36:56
问题 I want to build an app for android and ensure that the user can only use this app. (i.e. user should not be able to open or install any other app.) Is it possible to force such restrictions on an Android device ? And if it is where should I start ? 回答1: What you are looking for is called the "kiosk mode" (just to help you googling the appropriate term). There is no such thing in the standard android api (at least... not yet : see the Edit ). User always have the ability to press the home

Android Disable Recent Task Button like in SureLock

柔情痞子 提交于 2019-12-06 01:57:53
问题 Anyone who knows how to disable the Recent Task App Button when it launches the allowed application in the app just like in SureLock Kiosk Lockdown? If so, can you please provide codes for that? 回答1: From the source public void onWindowFocusChanged(boolean hasFocus) { super.onWindowFocusChanged(hasFocus); Log.d("Focus debug", "Focus changed !"); if(!hasFocus) { Log.d("Focus debug", "Lost focus !"); Intent closeDialog = new Intent(Intent.ACTION_CLOSE_SYSTEM_DIALOGS); sendBroadcast(closeDialog)

Firefox browser disable safe mode

穿精又带淫゛_ 提交于 2019-12-05 20:06:05
I am using Windows 7 and I've been playing with the Firefox browser for a while. I want to create a kiosk app using it, I installed a plugin for that, but the problem is that when I start the Firefox app, if I press Shift, it enters safe mode. I read some guides on Google that tell me to edit chrome/browser.jar but I have no such file in my Firefox folder. I need some help for disabling the feature that lets me enter safe mode by pressing Shift. You cannot really disable safe mode by editing text files, the handling of the Shift key is inside compiled code . You can however disable the dialog

Chromium kiosk mode : Fullscreen and remove address bar

≯℡__Kan透↙ 提交于 2019-12-05 17:41:30
I am trying to run chromium browser in kiosk mode in raspberry pi 3(Official Jessie ). Here is i've added in my autostart file @point-rpi @xset s noblank @xset s off @xset -dpms @chromium-browser --kisok www.fb.com This works fine but some problem occured. Browser is not opened in full window also the address bar is still present in chromium So how can i remove above two items I had a similar issue ... I eventually used this in a .xinitrc file in the home directory. #Disable DPMS. xset -dpms xset s off xset s noblank #Lets remove a lock file that could be caused due to a crash. rm /home/pi/

JavaFX Full Screen Exclusive Mode

筅森魡賤 提交于 2019-12-05 17:14:23
I am making a JavaFX kiosk application that needs to take full control of the screen and disallow closing, minimising, and certain keypresses. I was wondering is there a way to make a JavaFX application run in full screen exclusive mode, if not are there any alternatives that could achieve the same goal. I have tried using: stage.setFullScreen(true); which does successfully make the application full screen, however the user can still exit the application or exit the full screen. Handle close events. following code may help! // Set plat params Platform.setImplicitExit(false); primaryStage

Disable menu bar in Windows Mobile 6.5

天涯浪子 提交于 2019-12-05 08:53:35
I'm porting .NET application from WM5 to WM6.5. Besides new resolution I noticed different UI behavior for start menu and title bar (caption bar). My application needs to work in kind of kiosk mode where user can't exit application and bypass our authentication. For this purpose on WM5 I was hiding start button and close button. I am using following function: SHFullScreen(hWnd, SHFS_HIDESTARTICON | SHFS_HIDESIPBUTTON); Hiding buttons kind of works on WM6.5 too, but there is another problem. User can tap on the title bar (menu bar, caption bar - I'm not sure what is proper name for it - the bar