kiosk-mode

How to create a kiosk-like UI, so that the user can never exit from it or switch to another application?

↘锁芯ラ 提交于 2019-11-27 14:48:29
I need to create a simple Delphi application, kiosk style. It is a very simple thing, a single form where the user writes some personal info to register to an event. 4 TEdit and a TButton. What I want to achieve is to avoid the user does any action different then typing in TEdit or clicking on the TButton. For example I don't want he does ALT TAB (switchin applications), pressing windows key on keyboard, doing ctrl-alt-canc, etc... I can add a passowrd protected Button that enables/disables this "Kiosk mode", in this way as I need to exit the kiosk mode I simply press that button and exit. How

Lock Android Device to a Single Application [closed]

独自空忆成欢 提交于 2019-11-27 09:41:20
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . My company is looking at selling an Android device with an application on that will do a certain task as a product to replace an embedded device. However we need to some how lock the device to only have access to our application which we will develop and not be able to access the normal Android OS interface. I

How to run a C# program in kiosk mode? [closed]

放肆的年华 提交于 2019-11-27 03:01:00
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 2 years ago . I have a c# and WPF program which i want to install on a windows tablet, i want my program to be the only program running on the tablet, it should start running automatically right when the user will turn on the tablet. Any solution? 回答1: Never use windows original kiosk mode - it

PackageInstaller "Silent install and uninstall of apps by Device Owner” - Android M Preview

耗尽温柔 提交于 2019-11-27 01:20:15
问题 PackageInstaller (https://developer.android.com/reference/android/content/pm/PackageInstaller.html) seems to have been added starting in API 21 (Lollipop), however I have not found any solid code examples on how to install an APK via this API. Any code help would be appreciated. I’m investigating COSU/Kiosk apps for Android M Preview and was trying to implement the new feature "Silent install and uninstall of apps by Device Owner” (https://developer.android.com/preview/api-overview.html#afw)

How to create a kiosk-like UI, so that the user can never exit from it or switch to another application?

六眼飞鱼酱① 提交于 2019-11-26 16:56:37
问题 I need to create a simple Delphi application, kiosk style. It is a very simple thing, a single form where the user writes some personal info to register to an event. 4 TEdit and a TButton. What I want to achieve is to avoid the user does any action different then typing in TEdit or clicking on the TButton. For example I don't want he does ALT TAB (switchin applications), pressing windows key on keyboard, doing ctrl-alt-canc, etc... I can add a passowrd protected Button that enables/disables

Show soft keyboard even though a hardware keyboard is connected

拈花ヽ惹草 提交于 2019-11-26 16:07:33
问题 Is there any way to show software keyboard with USB keyboard connected (in my case RFID reader)? I tried to force show it using InputManager (with these or similar parameters), but with no luck ((InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE)).toggleSoftInput(InputMethodManager.SHOW_FORCED,0); Important notice - I know that there is a button in status/system bar to show it, but this button is not visible to user (Kiosk app). 回答1: You need to override the InputMethodService

How can I make Chrome allow access to a webcam over http (not https)?

泪湿孤枕 提交于 2019-11-26 11:13:17
问题 I am building a kiosk application using webrtc video. It is only served on the internal network and I would like to be able to always allow the webcam for my site over http. Using ssl isn\'t that important and is just an extra expense for a cert. Is there any way to do this or am I stuck? 回答1: Yes, an admin can override the prompts with a policy. VideoCaptureAllowedUrls Patterns in this list will be matched against the security origin of the requesting URL. If a match is found, access to

Easy way to hide system bar on Android ICS

倾然丶 夕夏残阳落幕 提交于 2019-11-26 08:19:33
问题 I will give my ICS tablets for users to complete a survey so I would like the user to work with my app only. They should not be able to switch to the home screen, press back buttons etc., so I would like to hide the system bar completely. My tablet is rooted and I know some application like this can help me, but I don\'t need all the extra functions of this app. I found this tutorial that could help me, but if I can add the code to do my own, it would be great. 回答1: HideBar has a kiosk mode

Android: Taking complete control of phone(kiosk mode), is it possible? How?

独自空忆成欢 提交于 2019-11-26 00:45:49
We have a program that we install on the phones and loan the phones to users for a certain period. We would like the phones to be used solely for running our application (no phone calls, no games, no nothing). The phones will be rooted. So the things we need: Run in full screen, nothing else will be visible Home button and other device buttons won't work Our app will run automatically on startup It doesn't have to be "hacker proof", but should be sufficient to prevent average user messing with the device. Is this possible? I have done similar things on Symbian & Windows Mobile but I don't have