The main screen in my app works fine when the screen zoom is set to default:
When I set the screen zoom to the maximum, layouts overlap:
I want to disable android OS from zooming my app. In other words I don't want the activity to be resizable. I tried different solutions but non of them achieves what I want.
I used this code in the manifest:
<supports-screens
android:smallScreens="false"
android:resizeable="false"
android:requiresSmallestWidthDp="360" />
But the app is still zoomed but with a warning message to the user that the app may behave unexpectedly:
How can disable resizing or zooming my activity on all screens? Plz help me.