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ビューからツールバーのコピー、貼り付け、および選択を無効にするにはどうすればよいですか?
私は、JavascriptとJqueryで動作するWebサイトを実際に「webview」するアプリケーションを作成しています。
ですから、コピーアンドペーストツールバーを無効にできるかどうか疑問に思っています。
WebViewのすべてのタッチイベントを無効にします
mWebView.setOnLongClickListener(new OnLongClickListener() { @Override public boolean onLongClick(View v) { return true; } }); mWebView.setLongClickable(false);