このコードをカスタム ビュー クラスに書きました。 protected void onDraw(Canvas canvas) {
Paint p1 = new Paint();
p1.setStyle(Style.FILL);
p1.setColor(Color.BLACK);
p1.setAntiAlias(true);
RectF rect1 = new RectF(canvas.getWidth()/2,500, canvas.getWidth() ,canvas.getHeight() );
canvas.drawRoundRect(rect1, 4, 4, p1);
super.onDraw(canvas);
}
アクティビティのパラメーターにアクセスしrect1
て動的に変更できるようにしたいのですが、どうすればよいですか?