public boolean isDrawColor() {
   if (mCanvas != null) {
     return mCanvas.isDrawColor();
   } else {
     return false;
   }
 }
 public void setDrawColor(boolean isDrawColor) {
   if (mCanvas != null) {
     mCanvas.setDrawColor(isDrawColor);
   }
 }