use of org.mozilla.focus.webview.SystemWebView in project focus-android by mozilla-mobile.
the class WebViewProvider method create.
public static View create(Context context, AttributeSet attrs) {
final SystemWebView webkitView = new SystemWebView(context, attrs);
final WebSettings settings = webkitView.getSettings();
setupView(webkitView);
configureDefaultSettings(context, settings);
applyAppSettings(context, settings);
return webkitView;
}
use of org.mozilla.focus.webview.SystemWebView in project focus-android by mozilla-mobile.
the class WebViewFakeLongPress method perform.
@Override
public void perform(UiController uiController, View view) {
final SystemWebView webView = (SystemWebView) view;
webView.getCallback().onLongPress(hitTarget);
}
Aggregations