-1

The app is crashing without clearing the canvas. android studio 3.3.2

public void clearCanvas() {mPath.reset();invalidate();}

I expect to clear the canvas. without crashing

jins joseph
  • 271
  • 1
  • 11

1 Answers1

0

You should share the crash log. In mostly case, you can find the reason of crash when you use try-catch block. You should try it, if you can't resolve it, you can ask more things in here.

In this case, you should check if your 'mPath' is null. (NullPointerException)