Advertisement
minafaw3

SemiCircle

Jun 29th, 2015
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.86 KB | None | 0 0
  1.  
  2.  
  3. import android.app.Activity;
  4. import android.content.Context;
  5. import android.graphics.Bitmap;
  6. import android.graphics.BitmapFactory;
  7. import android.graphics.Canvas;
  8. import android.graphics.Color;
  9. import android.graphics.Paint;
  10. import android.graphics.Path;
  11. import android.graphics.RectF;
  12. import android.util.AttributeSet;
  13. import android.util.DisplayMetrics;
  14. import android.view.View;
  15.  
  16. import com.validate.R;
  17.  
  18. /**
  19.  * Created by Mina on 19/06/2015.
  20.  */
  21. public class SemiCircle  extends View {
  22.  
  23.     private Path mClippingPath;
  24.     private Context mContext;
  25.     private Bitmap mBitmap;
  26.     private float mPivotX;
  27.     private float mPivotY;
  28.  
  29.     Paint mPaint = new Paint();
  30.  
  31.     public SemiCircle(Context context) {
  32.         super(context);
  33.         mContext = context;
  34.         mPaint.setColor(Color.RED);
  35.         initilizeImage();
  36.     }
  37.  
  38.     public SemiCircle(Context context, AttributeSet attrs) {
  39.         super(context, attrs);
  40.         mContext = context;
  41.         initilizeImage();
  42.     }
  43.  
  44.     private void initilizeImage() {
  45.         mClippingPath = new Path();
  46.  
  47.         //Top left coordinates of image. Give appropriate values depending on the position you wnat image to be placed
  48.         mPivotX = getScreenGridUnit();
  49.         mPivotY = 0;
  50.  
  51.         //Adjust the image size to support different screen sizes
  52.         Bitmap bitmap = BitmapFactory.decodeResource(mContext.getResources(), R.drawable.circle);
  53.  
  54.         int imageWidth = (int) (getScreenGridUnit() * 30 );
  55.         int imageHeight = (int) (getScreenGridUnit() * 30);
  56.         mBitmap = Bitmap.createScaledBitmap(bitmap, imageWidth, imageHeight, false);
  57.     }
  58.  
  59.     public void setClipping(float progress) {
  60.  
  61.         //Convert the progress in range of 0 to 100 to angle in range of 0 180. Easy math.
  62.         float angle = (progress * 180) / 100;
  63.         mClippingPath.reset();
  64.         //Define a rectangle containing the image
  65.         RectF oval = new RectF(mPivotX, mPivotY, mPivotX + mBitmap.getWidth(), mPivotY + mBitmap.getHeight());
  66.         //Move the current position to center of rect
  67.         mClippingPath.moveTo(oval.centerX(), oval.centerY());
  68.         //Draw an arc from center to given angle
  69.         mClippingPath.addArc(oval, 180, angle);
  70.         //Draw a line from end of arc to center
  71.         mClippingPath.lineTo(oval.centerX(), oval.centerY());
  72.         //Redraw the canvas
  73.         invalidate();
  74.     }
  75.  
  76.     @Override
  77.     protected void onDraw(Canvas canvas) {
  78.         super.onDraw(canvas);
  79.  
  80.         //Clip the canvas
  81.         canvas.clipPath(mClippingPath);
  82.         canvas.drawBitmap(mBitmap, mPivotX, mPivotY, null);
  83.  
  84.  
  85.     }
  86.  
  87.     private float getScreenGridUnit() {
  88.         DisplayMetrics metrics = new DisplayMetrics();
  89.         ((Activity)mContext).getWindowManager().getDefaultDisplay().getMetrics(metrics);
  90.         return metrics.widthPixels / 32;
  91.     }
  92.  
  93.  
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement