Zebra TC75 Kiosk mode select text -> display share option

Solved
C
Christophe
Post & Telecommunications Luxembourg

Hello all,

we have mobicontrol on version 13.3.03454

we have some device zebra tc75  under android 6.0 with client mobicontrol on version 13.5.0 build 1677

We have a profile who has lock down with authentification.

On the lock down -> html page, we have some title text and a image.

when user click on the image we open an app.

If we press the TITLE text on the lock down after perhpas one or two second we can see a little menu appears with some options as SHARE.

If i click on share, a popup is show (application chooser) with these app : 

- android beam

- bluethooth

- email

- gmail

- ....

How to avoid this problem ?

thanks for all

6 years ago
Android
ANSWERS
RC
Raymond Chan Diamond Contributor
6 years ago (edited 6 years ago)

You can try disallowing text selection  (for copy/paste, share etc.) by adding the following between  <style> and </style> tags  in your html/CSS  template :

.unselectable
{
  -webkit-user-select:none;
  cursor: default;
}

html
{
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

Solution
C
Christophe
6 years ago

Hello Raymond,

thanks it's work ...great => user-select: none;

have a nice day