I want to deny this option on my app.
I already tried to use this guys in manifest
->application
:
android:launchMode="singleTask"
android:resizeableActivity="false"
But I still can resize my app with my mobile.
May be it is mobile's own feature. By the way, I found some system apps with really denied resizing. Camera
- for example. If you just try to resize this app, it is escapes with message: "app does not support the multi-window mode".
Try to add this
android:resizeableActivity="false"
in each activity in your manfiest so it will look like
<activity android:name=".Activity"
android:label="@string/app_name"
android:resizeableActivity="false" />