我正在做一个测试应用程序,以便将来开发一个更复杂的应用程序,我问自己是否可以在画布上绘制更多矩形(可能是一个左,一个中心,一个右)。无需使用任何ImageView,TextView或其他东西。 这是我的代码:
public class MioCanvas extends View {
Paint paint;
Rect rect;
public MioCanvas(Context context) {
super(context);
paint = new Paint();
rect = new Rect();
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
paint.setColor(Color.GRAY);
paint.setStrokeWidth(3);
canvas.drawRect(0, 1999999, canvas.getWidth() / 2, canvas.getHeight() / 2, paint);
}
}
这是活动:
public class MainActivity extends AppCompatActivity {
MioCanvas mioCanvas;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mioCanvas = new MioCanvas(this);
mioCanvas.setBackgroundColor(Color.GREEN);
setContentView(mioCanvas);
}
}
答案 0 :(得分:1)
要实现所需的目标,例如,创建一个名为MyRectangle的对象,并在其中保留对其宽度,高度,positionX,positionY,颜色参考等的引用。
在您的MioCanvas
类中放置一个全局变量,例如:
List<MyRectangle> rectangleList;
在构造函数中将其初始化,创建一些矩形并将其添加到列表中。
最后遍历onDraw
方法中的列表以绘制矩形:
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
for(MyRectangle rectangle : rectangleList){
paint.setColor(rectangle.getColour());
paint.setStrokeWidth(rectangle.getStroke());
canvas.drawRect(rectangle.getPositionX(), rectangle.getPositionY(), rectangle.getWidth() / 2, rectangle.getHeight() / 2, paint);
}
}