Definí una clase como esa:
public class TestMyFrameLayout extends FrameLayout{
Paint mPaint;
public TestMyFrameLayout(Context context, AttributeSet attrs) {
super(context, attrs);
}
public TestMyFrameLayout(Context context) {
super(context);
mPaint = new Paint();
mPaint.setColor(Color.GREEN);
}
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
canvas.drawCircle(50f, 50f, 30, mPaint);
}
}
y lo llamó como:
TestMyFrameLayout myFrameLayout = new TestMyFrameLayout(this);
LayoutParams myFrameLayoutParams = new LayoutParams(300,300);
myFrameLayout.setLayoutParams(myFrameLayoutParams);
setContentView(myFrameLayout);
Pero, de hecho, la función TestMyFrameLayout.onDraw (Canvas canvas) no se llama, ¿por qué?
android
android-layout
old_hou
fuente
fuente
@Override
antes de onDraw: esto buscará errores tipográficos en eclipse.Respuestas:
Resuelto. Agregar
this.setWillNotDraw(false);
constructorfuente