Android N - 应用程序不支持多window
Android N - Application does not support multi-window
我正在尝试使用我的应用程序测试新功能 multi-window,但每次我尝试让我的应用程序适合半个屏幕时,我都会祝酒说我的应用程序不支持该功能.
我的应用程序活动仅支持 portrait
方向,这就是我要祝酒词的原因。
If the app declares a fixed orientation, you should attempt to put the
app in multi-window mode. Verify that when you do so, the app remains
in full-screen mode.
android:resizeableActivity
在清单的 <activity>
或 <application>
元素中设置此属性以启用或禁用多 window 显示:
android:resizeableActivity=["true" | "false"]
我正在尝试使用我的应用程序测试新功能 multi-window,但每次我尝试让我的应用程序适合半个屏幕时,我都会祝酒说我的应用程序不支持该功能.
我的应用程序活动仅支持 portrait
方向,这就是我要祝酒词的原因。
If the app declares a fixed orientation, you should attempt to put the app in multi-window mode. Verify that when you do so, the app remains in full-screen mode.
android:resizeableActivity
在清单的 <activity>
或 <application>
元素中设置此属性以启用或禁用多 window 显示:
android:resizeableActivity=["true" | "false"]