在电脑模拟器上面可以正常画,在我安卓手机上面显示不出来画线,什么原因?
ctx.beginPath();
ctx.moveTo(StartX+i*SIZE, StartY+j*SIZE);
ctx.lineTo(StartX + i * SIZE + SIZE, StartY+j*SIZE);
ctx.lineTo(StartX + i * SIZE + SIZE, StartY + j * SIZE + SIZE);
ctx.lineTo(StartX + i * SIZE, StartY + j * SIZE + SIZE)
ctx.closePath();
ctx.stroke();
在电脑模拟器上面可以正常画,在我安卓手机上面显示不出来画线,什么原因?