Waldemar Lima Well-Known Member Licensed User Longtime User Jul 22, 2019 #1 hello everyone ! how can i disable text selection on webview ?
R ronell Well-Known Member Licensed User Longtime User Jul 23, 2019 #2 if you have the html files then you can add this lines HTML: <style> body { -webkit-user-select: none; -moz-user-select: -moz-none; -ms-user-select: none; user-select: none; } </style> or use this library to handle events that will trigger text selection https://www.b4x.com/android/forum/threads/flingablewebview.33406/ Upvote 0
if you have the html files then you can add this lines HTML: <style> body { -webkit-user-select: none; -moz-user-select: -moz-none; -ms-user-select: none; user-select: none; } </style> or use this library to handle events that will trigger text selection https://www.b4x.com/android/forum/threads/flingablewebview.33406/