android:当用户长按web视图时如何禁用动作模式?

Kha*_*yed 4 java android webview android-webview android-actionbar

如何禁用操作模式.换句话说,我想阻止当用户长按包含文本的Web视图时出现操作模式.

Sid*_*ele 13

WebViews一般没有做过很多工作,但我认为其中一个应该有效.我没有测试过这些.

1:

WebView在XML中设置属性:android:longClickable="false"

或者2:

在Java中设置以上属性而不是XML:

your_webview.setLongClickable(false);
Run Code Online (Sandbox Code Playgroud)

或3:重写你的WebViewreturn truesetOnLongClickListener方法

your_webview.setOnLongClickListener(new OnLongClickListener() {
    @Override
    public boolean onLongClick(View v) {
        return true;
    }
});
Run Code Online (Sandbox Code Playgroud)