Reputation: 161
In my Android app, I would like to provide the exactly same pngs for the sw600dp-mdpi folder as for the hdpi folder. Is there any option other than having the resources duplicated in both folders?
Upvotes: 0
Views: 47
Reputation: 166
You have two solutions: Either you only provide the files in the default resources fallback, Or you also provide a file that is larger from default one in the HDPI resources. Android will pick the best that suit the device.
make sure about the quality and how it looks in multiple screen sizes.
Upvotes: 1