kiosk

How do I set the default launcher in an AOSP build?

三世轮回 提交于 2019-11-27 12:42:55
问题 I am modifying the AOSP source code because my app needs to run in a kiosk environment. I want Android to boot directly into the app. I've excluded launcher2 from generic_no_telephony.mk , and added the app there. Now Android prompts me all the time to choose default launcher . The two choices that are available on the pop-up: Home Sample My app. How can I exclude the Android Home Sample Launcher? Or is there another way to set the default launcher in an AOSP build? 回答1: Instead of modifying

Disable Ctrl-Alt-Del and shutdown for kiosk

廉价感情. 提交于 2019-11-27 08:59:39
I finished an app for a client. After talking for a bit he would like me to do an additional app or recommend one for their kiosk. The client would like a way to prevent the computer from shutting down. They like to disable Ctrl + Alt + Delete (also so processes cant be killed), Alt + F4 to close their browser and no windows button to make the start menu pop up for the user to click or use keyboard to shutdown. Obviously there should be a way to unlock it I told them i'll look into it but they really don't need it. They are using Windows 7. Is there a WinAPI call I can use or an already

Programmatically disabling Taskmanager using c#

笑着哭i 提交于 2019-11-27 07:03:03
问题 I am working on a Kiosk application, I need to disable the taskmanager. So that when the user press [Ctrl + Alt + Del] and [Ctrl + Shift + Escape], the taskmanager should not pop up. How? 回答1: You can do it by changing the group policy settings. public void KillCtrlAltDelete() { RegistryKey regkey; string keyValueInt = "1"; string subKey = "Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System"; try { regkey = Registry.CurrentUser.CreateSubKey(subKey); regkey.SetValue("DisableTaskMgr

Disable Ctrl-Alt-Del and shutdown for kiosk

久未见 提交于 2019-11-26 14:25:35
问题 I finished an app for a client. After talking for a bit he would like me to do an additional app or recommend one for their kiosk. The client would like a way to prevent the computer from shutting down. They like to disable Ctrl + Alt + Delete (also so processes cant be killed), Alt + F4 to close their browser and no windows button to make the start menu pop up for the user to click or use keyboard to shutdown. Obviously there should be a way to unlock it I told them i'll look into it but

Prevent status bar for appearing android (modified)

一世执手 提交于 2019-11-26 02:32:52
问题 I am implementing a kiosk mode application and i have successfully made the application full-screen without status bar appearance post 4.3 but unable to hide status bar in 4.3 and 4.4 as status-bar appears when we swipe down at the top of the screen. I have tried to make it full screen by speciflying the full screen theme in manifest setting window Flags ie setFlags setSystemUiVisibility Possible duplicate but no concrete solution found Permanently hide Android Status Bar Finally the thing i

How to disable Home and other system buttons in Android?

大城市里の小女人 提交于 2019-11-26 00:24:52
问题 I need to disable Home and other system buttons in my Android application. Example: MX Player (see at Google Play) - you can press \"lock\" icon at player screen and it locks all hardware and software system buttons. It works fine WITHOUT ROOTING. I tested it on some devices with different Android versions. I tried to disassemble Kids Lock (plugin) but has no clue how it works yet. I need same solution like the Kids Lock (plugin) for MX Player : - disable Home, Back and all other system