Android 设备: 5.1.1版本 Chrome: Version 58.0.3029.110 (64-bit)
我们在地址栏中输入:
1
chrome://inspect
就可以打开设备列表界面.
可以看到我的 Android 设备已经显示出来了.
下面举个例子说明该调试工具的使用.
简单的 Android 工程示例
该工程只有一个 Activity, 使用 WebView 加载本地 HTML 文件.
1. 创建 assets 目录
工程切换到 Project Files 视图
这样就可以在 src/main 目录下新建了 assets 文件夹了.
2. 创建 HTML 文件
该 HTML 文件, 命名为 local.html, 放在 assets 目录下面.
local.html 源文件:
1 2 3 4 5 6 7 8 9 10 11 12 13
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">Click me</button> <p id="demo"></p> <p>A function is triggered when the button is clicked.</p> <script> function myFunction() { console.log('js console.'); } </script> </body> </html>
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">Click me</button> <p id="demo"></p> <p>A function is triggered when the button is clicked.</p> <script> function myFunction() { console.log('js console.' + var_error); } </script> </body> </html>