ImageButton用canvus旋转后点不中,但还能在原位置点中ImageButton ibutton= (ImageButton) findViewById(R.id.btn_ibutton);
        switch ( mOrientation ) {
         case 0:
         canvas.translate(0, 0);
         canvas.rotate(-mOrientation, width / 2, height / 2);//旋转后新位置就点不到了
         canvas.translate(mStartCoordinates[0],0);
         break;