The recycler view for changing/selecting the theme currently loads all the full-res images in a thumbnail-sized view. Loading all the images(presently around 32) in full resolution, all of which are equal to or at least 1920x1080, slows the inflation of the Recycler View substantially slow and also the scrolling.
The aim is to-
Inflate the recycler view with only the downscaled images.
Create a class that handles the relations(names, Drawables) of both the downscaled and full-res images for a single theme.
The recycler view for changing/selecting the theme currently loads all the full-res images in a thumbnail-sized view. Loading all the images(presently around 32) in full resolution, all of which are equal to or at least 1920x1080, slows the inflation of the Recycler View substantially slow and also the scrolling.
The aim is to-