gpt4 book ai didi

android - 在 Android 中清除位图

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

我使用位图和 Canvas 创建了第一个图表。如何清除位图以绘制新图表?

ImageView imageView = new ImageView(this);
Bitmap bitmap = Bitmap.CreateBitmap(w, h, Bitmap.Config.Argb8888);
Canvas canvas = new Canvas(bitmap);
...
imageView.SetImageBitmap(bitmap);
relativeLayout.AddView(imageView);

最佳答案

您可以在位图上使用eraseColor 将其颜色设置为透明。它无需重新创建即可再次使用。

bitmap.eraseColor(Color.TRANSPARENT);

进一步阅读 here

关于android - 在 Android 中清除位图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30485073/

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