Disabling Multi-window feature for Android N not working for an activity

前端 未结 3 2121
夕颜
夕颜 2021-02-08 10:54

I want to disable multi-window support for an activity in my app. I have set resizeableActivity to false in my Manifest but when I long press recent app icon, the a

3条回答
  •  萌比男神i
    2021-02-08 11:32

    The activity that is at the root of the task controls the window size. Your choices are:

    1. Trace back to all possible task root activities in your app and ensure they all also have android:resizeableActivity="false"

    2. Force this activity into another task, via Intent flags when you start it or manifest settings

提交回复
热议问题