kiosk-mode

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

陌路散爱 提交于 2019-12-18 10:08:25
问题 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. 回答1: 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

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

僤鯓⒐⒋嵵緔 提交于 2019-12-18 10:07:39
问题 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. 回答1: 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

Develop app run in kiosk mode in android

泪湿孤枕 提交于 2019-12-18 09:59:58
问题 How to make our app which is act like kiosk mode app( SureLock lockdown app ). I have LG E400 rooted android phone Android 2.3.6. I want to develop app like Surelock what shold i need to develop such app. Can anyone help me to develop such app on my own. My requirements: Android device boots with my app. For this app all hardware buttons are disabled(Home, Back, Menu) similar to SureLock app. 回答1: If your app acts like a home screen and you have no other home screen installed (or checked your

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

一世执手 提交于 2019-12-16 22:37:52
问题 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

Kiosk mode in Android

你离开我真会死。 提交于 2019-12-16 19:54:31
问题 I'm in the process of evaluating if and how a CF .NET enterprise application can be ported to run on Android devices. The application on Windows Mobile phones are run in kiosk mode where the application autostart in fullscreen-mode after booting and with the users unable to accidentally or willingly access any other parts of the phone. Is it possible on Android to have only one application autostart after booting and prevent users from accidentally (or willingly) access any other parts of the

How do I create a Chrome App effectively acting as a launch page in kiosk mode?

拟墨画扇 提交于 2019-12-13 18:17:51
问题 This is my first Chrome app creation attempt. Our school wants to create kiosk app for Chromebooks that will launch a webpage on our web server that is filled with shortcut links. This is mainly so young users like kindergarteners can bypass the login screen making the login screen is still available for older students. I spent a little bit of time on it yesterday and deployed it through the Google Apps management console, but the app does not display on our devices. I'm sure it's an issue

Persist data across single app kiosk mode executions

断了今生、忘了曾经 提交于 2019-12-13 16:04:59
问题 When developing normal Chrome Apps, I use the Chrome storage API to persist key-value pairs across sessions. This works great, and I want to do the same for a Single App Kiosk Mode app to be deployed on managed Chrome devices. However, it seems that chrome.storage.local does not persist across executions of the app. I wrote a test app illustrating this issue. Code here. 回答1: note: this answer applies only to users of the Chrome Management Console It turns out the issue had everything to do

How to make sure there is only one app

天大地大妈咪最大 提交于 2019-12-13 11:00:25
问题 I am developing an app with requirement that one app can be there in android system. No other app can be installed or remove google play store application as well. How can i achieve this? 回答1: As long as your device runs Lollipop or greater, you will want to set your app as a device owner. Note, this is different than device administrator. An app is granted device owner permissions only during device provisioning at the welcome screen of the Google Setup Wizard. The device owner is restricted

kiosk mode or fullscreen in chromium on android

放肆的年华 提交于 2019-12-12 13:48:50
问题 I have built a chromium ContentShell for my android device as explained here: https://code.google.com/p/chromium/wiki/AndroidBuildInstructions I now want to use this ContentShell in fullscreen mode. I tried to add the flag kiosk as explained here: http://www.chromium.org/developers/how-tos/run-chromium-with-flags But it is not working. Is there a way to use kiosk mode on android with chromium or would you recommend another way to achieve what i want to have? (display of website in fullscreen

Detect Google Chrome in Kiosk Mode

人盡茶涼 提交于 2019-12-12 11:14:29
问题 how to detect if the user using Google Chrome in kiosk mode? I want to know if the user is using chrome in kiosk mode if it is not for me to display a message to put teaching so she can use the resources that only the kiosk mode can provide 回答1: You can check the isKioskSession property on the launchData object you get from the chrome.app.runtime.onLaunched event. chrome.app.runtime.onLaunched.addListener(function(launchData) { if (launchData.isKioskSession) { // yes, we are in kiosk mode } }