其他分享
首页 > 其他分享> > android WebView和WebViewClassic之间是什么关系

android WebView和WebViewClassic之间是什么关系

作者:互联网

在扩展Android WebView的类中长时间单击文本时,我在复制粘贴时遇到问题.

我可以复制,但是粘贴无效.
在调查时,网上有人建议研究android.webkit.WebViewClassic.

在WebViewClassic中,有一个名为pasteFromClipboard()的方法.
我认为实际的代码粘贴会在该方法中发生,但不确定.

所以任何人都可以告诉我,对吗,即对WebViewClassic进行调查对我来说是否值得?

如果是,请告诉我WebView和WebViewClassic之间有什么关系,即WebView中的单击多长时间会转到WebViewClassic.

抱歉,我无法公开我的代码或日志.

解决方法:

WebViewClassic是WebView的默认WebViewProvider.从实施说明:

The WebView is a thin API class that delegates its public API to a backend WebViewProvider
class instance. WebView extends {@link AbsoluteLayout} for backward compatibility reasons.
Methods are delegated to the provider implementation: all public API methods introduced in     this
file are fully delegated, whereas public and protected methods from the View base classes are
only delegated where a specific need exists for them to do so.

基本上,触摸处理是从WebView转发到WebViewClassic实例的.如果您通读了它的onTouchEvent实现及其内部的WebViewInputDispatcher实现PrivateHandler,则可以跟踪触摸处理将导致在WebViewClassic实例上调用pasteFromClipboard()的位置.

是的,你是对的.当您点击PastePopupWindow上的粘贴按钮时,将调用WebViewClassic的pasteFromClipboard();.方法.

标签:webview,android-webview,copy-paste,long-click,android
来源: https://codeday.me/bug/20191030/1967398.html