JS: App Drawer
App Drawer JavaScript Functions
You can find the JavaScript test page at https://www.android-kiosk.com/jstest.htm Just set this as the Kiosk URL on your device to test the functions.
Show or hide app drawer, requires version 2.5.0 or higher.
You can find the JavaScript test page at https://www.android-kiosk.com/jstest.htm Just set this as the Kiosk URL on your device to test the functions.
Show/Hide App Drawer
Show or hide app drawer, requires version 2.5.0 or higher.
<script>
//SHOW APP DRAWER
function showAppDrawer() {
Android.showAppDrawer();
}
//HIDE APP DRAWER
function hideAppDrawer() {
Android.hideAppDrawer();
}
</script>
<a href="javascript:showAppDrawer();">Show App Drawer</a>
<a href="javascript:hideAppDrawer();">Hide App Drawer</a>
Updated on: 11/05/2018
Thank you!