I am making an app. i don't want to my app split in screen as mention in the nougat version. Can anybody tell me how can i do this that my app does not split into screen.
How to disable the feature of split screen in nougat in android through programatically?
2k views Asked by LoveAndroid At
3
There are 3 answers
0
On
in mainfest
android:resizeableActivity="false"
if you want to disable particular Acticity or screen
<activity android:name=".SomeActivity"
android:label="@string/app_name"
android:resizeableActivity="false" />
or if you want to disable it in your entire app
<application
android:resizeableActivity="false" >
. . .
In you manifest add this in the application tag, so it will look like this: