kiosk-mode

Autorun Chrome kiosk app when Chrome OS starts up

混江龙づ霸主 提交于 2019-12-03 03:38:15
When Chrome OS ready, need to click 'App' button and then select the kiosk app, but I want to launch it automatically on startup. How to set that up? Nicholas Kristoffersen Answer found here: https://productforums.google.com/forum/#!topic/chromebook-central/XTqYPQfZmNc Please follow the steps below to put Chromebook into Kiosk mode. Wipe Data on Chromebook (Follow this link for instructions). After wipe is completed, you will be at the welcome screen. (Input your network information, but DO NOT LOGIN to the Chromebook) At the login screen, press Ctrl + Alt + K and enable Kiosk mode. Login into

Making a .NET application the only program which can run?

核能气质少年 提交于 2019-12-03 02:58:00
What would be the best way to make a Windows .NET application be the only program that can be used on a computer? I have come across timers or events to switch windows back to a window with matching text and some api32 calls to make a form top most. Is it possible to make an application like the windows lock screen where nothing can be done except that what is on screen? I want to block users from doing other things and only let administrators get to the desktop. You need to run your application in kiosk mode. External methods [DllImport("user32.dll")] private static extern int FindWindow

Home Launcher issue with Fragments after reboot

不打扰是莪最后的温柔 提交于 2019-12-02 07:13:47
问题 I am developing an application that will be used in an industrial setting as a handheld interface, distributed and preconfigured by my workplace. I am working on making the application run as the Home Launcher so that there will be less temptation for the tablets to "go missing". BACKGROUND I have the following in my manifest to make the application a Launcher: <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.HOME" />

How do I turn off windows 8.1 gestures and setting charm bar on my touch Screen

偶尔善良 提交于 2019-12-01 13:34:00
I Have an Touch screen Dell and Windows 8.1 Single language installed, When I move my finger from Right edge towards the middle, Windows 8 will bring up setting charm bar OR when i move my finger from middle top edge towards down windows 8 hide my application and bring up start menu. This is a problem because I'am developing a Kiosk Application on WPF, and i can't let user see setting or close Kiosk application. I tried to disabled that, but couldn't, the easy solution would be to run on another OS or downgrade to windows 7, but the machines will be running Windows 8.1 single language and

Can I disable systemui From within my android app?

为君一笑 提交于 2019-11-30 13:43:20
I used this answer to achieve a Kiosk Mode for my app: https://stackoverflow.com/a/26013850 I rooted the tablet with Kingo Root and then performed the following commands: adb shell > su > pm disable com.android.systemui > I am building an app that will only be used on our devices as kiosks.... It works great BUT.. I would like to perform the disable and enable of the system ui from the Android application itself. Are system commands possible from within an application? /** * Uses Root access to enable and disable SystemUI. * @param enabled Decide whether to enable or disable. */ public void

Change Chrome 4xx Page

安稳与你 提交于 2019-11-30 05:46:50
问题 I'm deploying a kiosk system that uses Chrome to display a java web app running in jetty started with a windows service wrapper. It takes some time after the system starts for jetty to be ready to serve content so for now I have a wait occurring which then launches Chrome in kiosk mode. This is pretty ugly, unreliable and slow. What I'm trying to do in order to make it run smoother is to use a Chrome extension that detects the 4xx error and sets a timeout that reloads the page. I have this

Lock Android Device to Run Only One App

别等时光非礼了梦想. 提交于 2019-11-30 05:11:39
I was wondering if anyone had a relatively simple solution for us. We created an app to be used by our clients on android devices that we give them. We would like the client to only be able to use our app and have limited access to everything else (i.e. settings, email etc.) What is the best way to achieve this without using 3rd party apps. Thank you in advance! This may not help but the L preview has a task locking feature included that may be of some insight, I'm not aware of how it functions as yet Task locking The L Developer Preview introduces a new task locking API that lets you

How do I make an embedded Android OS with just one app?

半世苍凉 提交于 2019-11-29 19:54:35
I would like to make my own embedded system built on Android (ARM) just using devices distributed with Android but without their launcher. OR I want to start Android with my application launched on top and refuse to close it and shutdown Android from my app. Karim Yaghmour Essentially you're trying to have a custom build of the AOSP where the "Home" is your application. If you look into /packages/apps/Launcher2 you'll find the code for the default Home screen. If you look at the AndroidManifest.xml file in there, you'll see something like this: <activity android:name="com.android.launcher2

How to disable context menu on right click/long touch in a kiosk mode of Chrome?

╄→гoц情女王★ 提交于 2019-11-29 11:58:01
问题 We are working on the software for a museum. There are several interactive kiosks with touch screen running on Windows 8.1 which are connected into local network. No keyboard, no mouse. The server with Apache on it contains several local websites. Each kiosk runs a copy of Google Chrome in a kiosk mode. So, we have some kind of local web applications which provide a museum visitor with information. Now, the problem. If a visitor does long touch on screen it works like an analogue of right

Lock Android Device to Run Only One App

故事扮演 提交于 2019-11-29 02:34:05
问题 I was wondering if anyone had a relatively simple solution for us. We created an app to be used by our clients on android devices that we give them. We would like the client to only be able to use our app and have limited access to everything else (i.e. settings, email etc.) What is the best way to achieve this without using 3rd party apps. Thank you in advance! 回答1: This may not help but the L preview has a task locking feature included that may be of some insight, I'm not aware of how it