How to change view for multiple window display in Android N? How to check application is in multiwindow or not?

Viewed 2167

How can we give separate layout or separate activity for Multiple window ?

eg. I have checked below things with help of android developer site

<activity android:name="com.configure.it.MyScreen">
    <layout android:defaultHeight="400dp"
          android:defaultWidth="200dp"
          android:gravity="top|end"
          android:minimalSize="300dp" />
</activity>

by declaring above things it affect how an activity behaves in multi-window mode.

But how can I show different layout if my particular screen is activated on Multiple-Window ?

2 Answers
Related