gpt4 book ai didi

java - 如何使用java for android在Canvas上画一个圆圈

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:49:51 25 4
gpt4 key购买 nike

<分区>

我想在我的 Android 应用程序的 Canvas 上画一个圆圈。我搜索了很多,意识到如果我需要一种可以不时更新的动态绘画形式,我需要使用 canvas 而不是 imageView。

感谢任何帮助

这是我到目前为止编写的代码,但它不会在 android 设备屏幕上绘制任何内容:

    private void createBitMap() {
Bitmap bitMap = Bitmap.createBitmap(100, 100, Bitmap.Config.ARGB_8888); //creates bmp
bitMap = bitMap.copy(bitMap.getConfig(), true); //lets bmp to be mutable
Canvas canvas = new Canvas(bitMap); //draw a canvas in defined bmp

Paint paint = new Paint(); //define paint and paint color
paint.setColor(Color.RED);
paint.setStyle(Style.FILL_AND_STROKE);
//paint.setAntiAlias(true);

canvas.drawCircle(50, 50, 10, paint);
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com