Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个应用程序,其中我使用了一种将 imageView 的对象作为参数的方法,但是从我的代码中我得到了一个画布对象。
那么有什么方法可以将该画布对象转换为 imageview 的对象。
您可以将画布转换为Bitmap:
Bitmap
Bitmap bitmap = Bitmap.createBitmap((int)width, (int)height, Config.RGB_565)); canvas.setBitmap(bitmap);
然后使用该位图显示ImageView:
ImageView
imageView.setImageBitmap(bitmap);