Combining ImageView into a single bitmap (Android)

I have more than one ImageView that I dynamically add to the layout class that extends the ViewGroup , there is one for the background and several other ImageView that are dragged over the background. I want to combine these ImageView into one single Bitmap Image without disturbing the position of these draggable images.

Is there a way to merge ImageView different sizes? Or merging the contents of a ViewGroup ? Because later I will want to combine the image using TextView also ...

Thanks for helping me :)

And let me know if you need more information.

+4
source share

Source: https://habr.com/ru/post/1440752/


All Articles