Skip to content

Instantly share code, notes, and snippets.

@smamran
Created August 25, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smamran/62256e06680743711e93 to your computer and use it in GitHub Desktop.
Save smamran/62256e06680743711e93 to your computer and use it in GitHub Desktop.
Simple Shadow Chart View
/**
* Created by Google on 8/22/2015.
*/
package com.example.google.interview;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.util.AttributeSet;
import android.view.View;
public class ChartView extends View {
public ChartView(Context context, AttributeSet attributeSet){
super(context, attributeSet);
init();
}
Paint paint;
public void init(){
paint = new Paint(Paint.ANTI_ALIAS_FLAG);
paint.setColor(Color.MAGENTA);
paint.setStyle(Paint.Style.FILL);
paint.setShadowLayer(30, 0, 0, Color.RED);
}
@Override
protected void onDraw(Canvas canvas) {
canvas.drawCircle(getWidth()/2, getHeight()/2, 80, paint);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment