如何使用十六进制代码阅读Android崩溃日志

时间:2015-12-27 02:03:13

标签: android

我昨天收到了崩溃日志。 但我的应用程序不使用jni或任何c代码。 我不知道如何阅读和解决这种崩溃。

有人有任何建议吗?

```

<style>
        .etiq1{font-family:verdana; font-size:15px;}
        #screen, #vect{border: 1px solid #000000;background-color:#0000FF;}
        #pR, #pG,{font-family:arial; font-size:15px; text-align:right;}
        #cR, #cG,{width:100px;}
        #ctrlsSVG{margin-left:505px;}           
    </style>
    <script>
        var screen,paint,vect,pR,pG;
        function inicGraf(){
            screen = document.getElementById("screen");
            vect = document.getElementById("vect");
            paint = screen.getContext("2d");
            pR=document.getElementById("pR"); 
            pG=document.getElementById("pG"); 
        }
        </script>
</head>
<body>
    <canvas id="screen" width="500" height="500"></canvas>
    <svg id="vect" width="500" height="500"></svg>
    <div id="ctrlsCanvas">
        <span class="etiq1">CANVAS: click to alternate pattern.</span>
        <br />
        <span class="etiq1">Modulation (1-30):</span>
        <input id="pR" size="1" value="4" min="1" max="30" />
        <input id="cR" type="range" value="4" min="1" max="30" step="1"/><span class="etiq1">(auto-renew)</span>
    <div/>      
    <div id="ctrlsSVG">
        <span class="etiq1">SVG: click to alternate pattern.</span>
    <br />
        <span class="etiq1">Modulation (1-10):</span>
        <input id="pG" size="1" value="4" min="1" max="10" />
        <input id="cG" type="range" value="4" min="1" max="10" step="1" />
        <button><span class="etiq1">renew</span></button> 
    <div/>
    <script>
        inicGraf();
    </script>
</body>

0 个答案:

没有答案