Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import android.app.Activity;
- import android.content.Context;
- import android.graphics.Bitmap;
- import android.graphics.BitmapFactory;
- import android.graphics.Canvas;
- import android.graphics.Color;
- import android.graphics.Paint;
- import android.graphics.Path;
- import android.graphics.RectF;
- import android.util.AttributeSet;
- import android.util.DisplayMetrics;
- import android.view.View;
- import com.validate.R;
- /**
- * Created by Mina on 19/06/2015.
- */
- public class SemiCircle extends View {
- private Path mClippingPath;
- private Context mContext;
- private Bitmap mBitmap;
- private float mPivotX;
- private float mPivotY;
- Paint mPaint = new Paint();
- public SemiCircle(Context context) {
- super(context);
- mContext = context;
- mPaint.setColor(Color.RED);
- initilizeImage();
- }
- public SemiCircle(Context context, AttributeSet attrs) {
- super(context, attrs);
- mContext = context;
- initilizeImage();
- }
- private void initilizeImage() {
- mClippingPath = new Path();
- //Top left coordinates of image. Give appropriate values depending on the position you wnat image to be placed
- mPivotX = getScreenGridUnit();
- mPivotY = 0;
- //Adjust the image size to support different screen sizes
- Bitmap bitmap = BitmapFactory.decodeResource(mContext.getResources(), R.drawable.circle);
- int imageWidth = (int) (getScreenGridUnit() * 30 );
- int imageHeight = (int) (getScreenGridUnit() * 30);
- mBitmap = Bitmap.createScaledBitmap(bitmap, imageWidth, imageHeight, false);
- }
- public void setClipping(float progress) {
- //Convert the progress in range of 0 to 100 to angle in range of 0 180. Easy math.
- float angle = (progress * 180) / 100;
- mClippingPath.reset();
- //Define a rectangle containing the image
- RectF oval = new RectF(mPivotX, mPivotY, mPivotX + mBitmap.getWidth(), mPivotY + mBitmap.getHeight());
- //Move the current position to center of rect
- mClippingPath.moveTo(oval.centerX(), oval.centerY());
- //Draw an arc from center to given angle
- mClippingPath.addArc(oval, 180, angle);
- //Draw a line from end of arc to center
- mClippingPath.lineTo(oval.centerX(), oval.centerY());
- //Redraw the canvas
- invalidate();
- }
- @Override
- protected void onDraw(Canvas canvas) {
- super.onDraw(canvas);
- //Clip the canvas
- canvas.clipPath(mClippingPath);
- canvas.drawBitmap(mBitmap, mPivotX, mPivotY, null);
- }
- private float getScreenGridUnit() {
- DisplayMetrics metrics = new DisplayMetrics();
- ((Activity)mContext).getWindowManager().getDefaultDisplay().getMetrics(metrics);
- return metrics.widthPixels / 32;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement