Ich habe eine Klasse wie diese definiert:
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);
}
}
und nannte es wie:
TestMyFrameLayout myFrameLayout = new TestMyFrameLayout(this);
LayoutParams myFrameLayoutParams = new LayoutParams(300,300);
myFrameLayout.setLayoutParams(myFrameLayoutParams);
setContentView(myFrameLayout);
Tatsächlich wird die Funktion TestMyFrameLayout.onDraw (Canvas Canvas) nicht aufgerufen. Warum?
android
android-layout
old_hou
quelle
quelle
@Override
Fügen Sie auch vor onDraw hinzu: Dadurch wird in Eclipse nach Tippfehlern gesucht.Antworten:
Gelöst.
this.setWillNotDraw(false);
Konstruktor hinzufügenquelle