How to Understand Android Kiosk Mode: Difference between revisions

From wizarPOS
No edit summary
(Replaced content with "{{Migrating|https://smartpossdk.gitbook.io/cloudpossdk/faq/other-development/learn-kiosk-mode}}")
Tag: Replaced
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== Android kiosk mode instruction ==
{{Migrating|https://smartpossdk.gitbook.io/cloudpossdk/faq/other-development/learn-kiosk-mode}}
Android kiosk mode is a special mode in which users can only access specific apps or features and cannot change system settings or install other apps freely. This mode is commonly used in public devices such as self-service kiosks, display devices, etc. in commercial and educational environments.
 
In Android kiosk mode, you can restrict user behavior, such as prohibiting changes to screen brightness, volume adjustment, accessing notification bars, disabling physical buttons, etc. In addition, you can also programmatically control the lifecycle of apps, such as restarting apps automatically when they exit, preventing users from switching to other apps.
In summary, Android kiosk mode helps you better manage and control public devices, ensuring they remain in a secure and controllable state.
== Enable Android kiosk mode ==
To enable Android kiosk mode, you can use AIDL interface provided by the system. To use this interface, import wizarviewagentassistant. When starting the service, pass com.wizarpos.wizarviewagentassistant as the package name and com.wizarpos.wizarviewagentassistant.SystemExtApiService as the class name.
=== Permission ===
The application declares the following permissions in the manifest:
  android.permission.MANAGE_ACTIVITY_STACKS
 
=== API Overview ===
==== <big>startLockTaskMode</big>====
  <syntaxhighlight lang="java">boolean startLockTaskMode(int taskId);</syntaxhighlight>
Request to put this activity in a mode where the user is locked to a restricted set of applications.
 
{|class="wizarpostable"
|-
! scope="row" colspan="2" | Parameters
|-
| taskId|| '''int:''' task id.
|}
{|
|-
|}
{|class="wizarpostable"
|-
!  scope="row" colspan="2" | Returns
|-
|  boolean || true:success ; false: failed;
|}
 
=== Download ===
==== AIDL====
Please download the [http://ftp.wizarpos.com/advanceSDK/ISystemExtApi.aidl AIDL]
==== Demo ====
Please download the [http://ftp.wizarpos.com/advanceSDK/KioskDemo-One2Two.zip demo]

Latest revision as of 03:22, 8 April 2024

Please visit new link of same subject:

https://smartpossdk.gitbook.io/cloudpossdk/faq/other-development/learn-kiosk-mode

We're making a move! Our site's content is migrating to a new URL, to provide you with an enhanced browsing experience. Please update your bookmarks accordingly. Thank you for your continuous support!