I developed apps using multiple layouts types for different screens types and resolutions but I have notices that some developers using only one layout type,Which one is a better practices to continue with Single or Multiple layout type?
Multiple layout type like
layout-large-mdpi
layout-large-tvdpi
layout-large-xhdpi
layout-xlarge-mdpi
layout-xlarge-xhdpi
This make scene
Using different dimens files you can do this thing.
values-mdpi ->dimens.xml
values-hdpi ->dimens.xml
values-xhdpi ->dimens.xml
values-xxhdpi ->dimens.xml
For example: define one in values-mdpi ->dimens.xml
and for values-hdpi ->dimens.xml
and for values-xhdpi ->dimens.xml
And after that use this dimen
same thing for text size.