Anyone tried setting minimum Height for the app to have in Nougat multi-window mode ?
Tried this,
<activity android:name=".MyActivity">
<layout android:defaultHeight="500dp"
android:defaultWidth="600dp"
android:gravity="top|end"
android:minHeight="450dp"
android:minWidth="300dp" />
</activity>
My reference was this: https://developer.android.com/guide/topics/ui/multi-window.html
But, didn't found any difference.
App working as normal in multi-window. No difference in the minimum Height for the app.