Android N has display size / screen zoom feature.
To handle multiple screen size in devices, I use many dimens.xml (ldpi - mdpi - hdpi - xhdpi - xxhdpi - xxxhdpi), but in Android N devices, such as Galaxy S6, when the user changes the display size / screen zoom, I can't handle that.
Is there any manifest tag or others to disable this feature in my app?
UPDATE this is Display metrics on two mode:
DisplayMetrics{density=4.0, width=1440, height=2560, scaledDensity=4.0, xdpi=580.571, ydpi=580.571}
DisplayMetrics{density=4.5, width=1440, height=2560, scaledDensity=4.5, xdpi=580.571, ydpi=580.571}