Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从 Android 应用程序中的 web 视图禁用复制、粘贴和选择工具栏?
我正在制作一个应用程序,它实际上是“webview”一个在 Javascripts 和 Jquery 上工作的网站。
所以我想知道是否可以禁用复制粘贴工具栏。
禁用 WebView 上的所有触摸事件
mWebView.setOnLongClickListener(new OnLongClickListener() { @Override public boolean onLongClick(View v) { return true; } }); mWebView.setLongClickable(false);