gpt4 book ai didi

android - 自定义 Cordova CordovaWebViewClient 上的 shouldOverrideUrlLoading 不再工作

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:08:09 26 4
gpt4 key购买 nike

我有一个自定义类来覆盖 CordovaWebViewClient 提供的方法 shouldOverrideUrlLoading。

    public class CordovaCustomWebClient extends CordovaWebViewClient {

public CordovaCustomWebClient(CordovaInterface cordova, CordovaWebView view) {
super(cordova, view);
}

@SuppressLint("DefaultLocale")
@SuppressWarnings("deprecation")
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
EventLogger.logMessage(getClass(), "--------------- shouldOverrideUrlLoading ---------------");
return super.shouldOverrideUrlLoading(view, url);
}

在我升级到最新版本的 Cordova (3.6.3) 之前,它一直运行良好。现在不再调用函数 shouldOverrideUrlLoading,但是当我调试代码时,我可以看到在 Cordova 库(CordovaWebViewClient 类)中执行了相同的函数。

以下是我如何覆盖 Cordova 的 Web 客户端:

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_web_application);

cordovaWebView = (CordovaWebView) this.findViewById(R.id.mainView);

Config.init(this);

Application application = null;
Bundle bundle = getIntent().getExtras();
if (bundle != null) {
application = (Application) bundle.get("key_application");
}

// Local Url to load application
String url = "";
if (application != null) {
if (HubManagerHelper.getInstance().getApplicationHosted() == null) {
MyApp app = (MyApp) getApplication();
app.registerDefaultHubApplication();
}
url = String.format(WebServicesClient.URL_WEB_APPLICATION, HubManagerHelper.getInstance()
.getApplicationHosted(), application.getPath());
}

cordovaWebView.setWebViewClient(new CordovaCustomWebClient(this, cordovaWebView));

// Listener to Download Web File with Native Component - Download Manager
cordovaWebView.setDownloadListener(new DownloadListener() {
public void onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype,
long contentLength) {
downloadAndOpenFile(WebApplicationActivity.this, url);
}
});

String ua = cordovaWebView.getSettings().getUserAgentString();
String appVersion = getAppVersion();
String newUA = ua.concat(" MyApp." + appVersion);
cordovaWebView.getSettings().setUserAgentString(newUA);
if (savedInstanceState == null) {
cordovaWebView.loadUrl(url);
} else {
((LinearLayout) findViewById(R.id.view_loading)).setVisibility(View.GONE);
}

最佳答案

我今天在升级到 3.6.3 后遇到了这个完全相同的问题。它需要查看 Cordova 源代码才能弄清楚为什么它被破坏了。在某些时候引入了一种新方法,init,它需要从您的 config.xml 中读取的一堆参数。如果您的代码未调用该方法,那么当加载 url 时,它将遇到 initIfNecessary 情况,这反过来将覆盖已设置的任何自定义客户端。

来自他们的代码:

private void initIfNecessary() {
if (pluginManager == null) {
Log.w(TAG, "CordovaWebView.init() was not called. This will soon be required.");
// Before the refactor to a two-phase init, the Context needed to implement CordovaInterface.
CordovaInterface cdv = (CordovaInterface)getContext();
if (!Config.isInitialized()) {
Config.init(cdv.getActivity());
}
init(cdv, makeWebViewClient(cdv), makeWebChromeClient(cdv), Config.getPluginEntries(), Config.getWhitelist(), Config.getExternalWhitelist(), Config.getPreferences());
}
}

您可以看到调用了 makeWebViewClient,即使您可能已经设置了自己的客户端。

我解决了这个问题:

ConfigXmlParser parser = new ConfigXmlParser();
parser.parse(activity);

CordovaInterface cordova = (CordovaInterface) activity;
init(cordova, new WFWebViewClient(cordova, this), makeWebChromeClient(cordova),
parser.getPluginEntries(), parser.getInternalWhitelist(), parser.getExternalWhitelist(),
parser.getPreferences());

并删除了已弃用的 Config.init(activity);

希望这能为您节省一些我今天浪费的时间。

关于android - 自定义 Cordova CordovaWebViewClient 上的 shouldOverrideUrlLoading 不再工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26180217/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com