我是团结的新手。我正在尝试为Android设备开发太空射击游戏,并发现在Api24 +中,多窗口正在破坏设计。
所以我尝试通过将清单添加到名为AndroidManifest.xml的目录“Assets / Plugins / Android /”来制作自定义清单。
如:
所示https://docs.unity3d.com/Manual/android-manifest.html
然后添加以下行android:resizeableActivity="false"
以禁用分屏模式。
如:
所示https://developer.android.com/guide/topics/ui/multi-window.html
但没有任何反应我仍然可以在游戏中使用多窗口模式。
编辑:
我只在应用程序中添加了android:resizeableActivity =“false”,但失败了:
<application android:theme="@style/UnityThemeSelector" android:resizeableActivity="false" android:icon="@drawable/app_icon" android:label="@string/app_name" android:debuggable="false" android:isGame="true" android:banner="@drawable/app_banner">
答案 0 :(得分:0)
添加了android:resizeableActivity =&#34; false&#34;活动也解决了我的问题:
<activity android:name="com.unity3d.player.UnityPlayerActivity" android:resizeableActivity="false" android:label="@string/app_name" android:screenOrientation="fullSensor" android:launchMode="singleTask" android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale|layoutDirection|density">