Android java.lang.IllegalStateException: Underflow in restore - more restores than saves
原因:在自定义view里面调用了
c.restore();
方法来保存画布的bitmap图像;
解决:
c.save();//在之前先写这一句
c.restore();
原因:在自定义view里面调用了
c.restore();
方法来保存画布的bitmap图像;
解决:
c.save();//在之前先写这一句
c.restore();