我使用 XWalkView 加载 HTML 页面,当我退出 Activity 时,我在 logcat 中收到此消息。在此处输入图像描述
似乎我在退出活动时绑定了服务,但没有取消绑定服务。我不知道如何摆脱这个问题,谁能帮助我?
@Override
protected void onXWalkReady() {
initXWalkView();
mXWalkView.load(URL,null);
}
@SuppressLint("SetJavaScriptEnabled")
private void initXWalkView() {
try {
Method method = XWalkView.class.getDeclaredMethod("getBridge");
method.setAccessible(true);
XWalkViewBridge bridge = (XWalkViewBridge) method.invoke(mXWalkView);
XWalkSettingsInternal settings = bridge.getSettings();
settings.setJavaScriptEnabled(true);
} catch (Exception e) {
e.printStackTrace();
}
WebAppInterface webAppInterface = new WebAppInterface(PatrolActivity.this);
mXWalkView.addJavascriptInterface(webAppInterface, "GreenSchool");
}