- 在代码中加入:
/**
* 设置 webview 是否可调试
*/
public void setDebugEnabled(Context context) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
if (0 != (context.getApplicationInfo().flags &= ApplicationInfo.FLAG_DEBUGGABLE)) {
webview.setWebContentsDebuggingEnabled(true);
}
}
} - 在Chrome浏览器中打开地址:chrome://inspect/#devices
- 将手机连上电脑,即可
- 注意:需要用debug包(release包暂时不好使,原因因为时间原因暂时没调研)