How to add Custom View +Relative Layout into ViewGroup
- by TimothyMiller
Hi I am creating a View where you can draw on the screen, using a view, where I would like to have a button/titlebar drawn at the top of the screen. Here is my current code
public class FingerPaint extends Activity
implements ColorPickerDialog.OnColorChangedListener {
private Paint mPaint;
private MyView mView;
@Override…