index.html 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <link rel="stylesheet" href="../style.css#" type="text/css" />
  7. <title>安卓系统出错诊断</title>
  8. <script type="text/javascript">
  9. function findLang(){
  10. let href = location.href;
  11. for(let i=href.length-1;i>0;i--){
  12. if('/'==href.charAt(i) && '/'==href.charAt(i-3))
  13. return i;
  14. }
  15. return 0;
  16. }
  17. function nav2(page){
  18. let i = findLang();
  19. location.href = location.href.substring(0,i+1)+page;
  20. }
  21. function nav2Lang(lang){
  22. let i = findLang();
  23. let href = location.href;
  24. location.href = location.href.substring(0,i-2)+lang+location.href.substring(i);
  25. }
  26. </script>
  27. </head>
  28. <body>
  29. <header class='header'>
  30. <a class="logo" href="javascript:void(0)" onclick="return nav2('index.html#')">Home</a> <a class="logo" href="javascript:void(0)" onclick="return nav2('tags/index.html#')">Tags</a>
  31. <nav>
  32. </nav>
  33. </header>
  34. <br />
  35. <div class="container">
  36. <h1 class="title">安卓系统出错诊断
  37. <br>
  38. <span class="subtitle"></span>
  39. </h1>
  40. <ul class="tags">
  41. </ul>
  42. <p><a href="..">超微浏览器</a>如果闪退,会生成出错文件&quot;error.log&quot;。</p>
  43. <p>如果超微或安卓系统或任何应用出现问题,则可利用超微浏览器进行诊断,方法如下:</p>
  44. <ul>
  45. <li>访问<a href="../cmds/index.html#">常用命令网页</a>,点击安装logcat相关的两个命令。</li>
  46. <li>清空后台并重启超微浏览器。</li>
  47. <li>长按历史按钮,执行命令&quot;清空logcat&quot;。</li>
  48. <li>触发有问题的功能。</li>
  49. <li>长按历史按钮,执行命令&quot;输出logcat.log&quot;.</li>
  50. <li>检查文件&quot;logcat.log&quot;内容。</li>
  51. </ul>
  52. <p>超微浏览器是手机上调试javascript脚本的最佳工具,无需打包就可有多种方式运行javascript代码。webview dev版自带devtools,运行此工具,打开flag &quot;webview-log-js-console-messages&quot;以后所有js出错信息及console输出会被复制到logcat中。然后用户可根据上一段所述方法诊断。</p>
  53. <p>非dev版本webview可点击如下链接运行devtools。<br>
  54. <a href="i:16:android.intent.action.VIEW:com.google.android.webview:org.chromium.android_webview.devui.MainActivity">devtools for com.google.android.webview</a></p>
  55. <p><a href="i:16:android.intent.action.VIEW:com.android.webview:org.chromium.android_webview.devui.MainActivity">devtools for com.android.webview</a></p>
  56. </div>
  57. <p>Last Modified: 2 April 2024<br>
  58. add js function in README<br>
  59. <pre></pre>
  60. </p>
  61. <script id='jsgiscus'
  62. src='https://giscus.app/client.js'
  63. data-repo="torappinfo/uweb"
  64. data-repo-id="MDEwOlJlcG9zaXRvcnkzMDIyMDU3MjE="
  65. data-category="Announcements"
  66. data-category-id="DIC_kwDOEgNLGc4CQjsh"
  67. data-mapping="title"
  68. data-strict="0"
  69. data-reactions-enabled="1"
  70. data-emit-metadata="0"
  71. data-input-position="top"
  72. data-theme="light"
  73. data-lang="en"
  74. data-loading="lazy"
  75. crossorigin="anonymous" async>
  76. </script>
  77. <footer class="site-footer">
  78. <div class="container">
  79. &copy; 2018-2024 Richard H. Cao
  80. </div>
  81. </footer>
  82. <!-- This document is licensed under the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is available at <https://www.gnu.org/licenses/>. -->
  83. </body>
  84. </html>