
strong text Below is an image stored in firebase db via recyclerview.
The goal is to store the combined images after putting several images inside the square through a click event. What should I do?

strong text Below is an image stored in firebase db via recyclerview.
The goal is to store the combined images after putting several images inside the square through a click event. What should I do?
Put a GridLayout inside the square and Grid Count++ whenever a Click Event occurs There is a way to apply the image that the Click Event occurred to the Grid View to the ImageView inside the Grid View. GridLayout configuration is probably the most important thing, right?
For example, if you configure the GridLayout as Horizontal and set the Max Size to 2,
1 2 under 3 4
Images will be constructed in this form.
And finally, the way to save the image is to convert the top-level layout of the square to a bitmap and save it.