I'm making something like a dashboard for my app. And everything fine except situation with ImageView size for diffrent device's screen inch.
It looks fine on phones and devices 7" and less
But on devices more than 7" it's looking bad
In all cases I used same size of ImageView - 50dp and I have generate MDPI, HDPI, XHDPI, XXHDPI images
If I will use dimens I will get blured images because MDPI, HDPI, XHDPI, XXHDPI images will be generated only for 50dp, but not for 100dp
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="image_size">100dp</dimen>
</resources>
But seems devices with 7" and more inch needs a little more image size, for example, 100dp.
I can't googling the solution. Is it possible to make images looks bigger on 7"+ tablets while not creating extra code?