gpt4 book ai didi

android - 禁用分屏android

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:51:27 41 4
gpt4 key购买 nike

你好,

我想禁用分屏,并获得“预期结果”屏幕截图中显示的结果。 ( toast “应用不支持分屏”)

在“实际结果”屏幕中,您可以看到 android:resizeableActivity="false" 如何影响应用程序,但仍启用分屏。我怎样才能完全禁用它?

实际结果:

enter image description here预期结果:

enter image description here

最佳答案

我发现了什么?

我们不能设置android:resizeableActivity="false"<application>标记它被忽略。 (错误的谷歌文档)

当我将它设置为主要 Activity 时它会起作用

 <activity
android:name=".activities.SplashScreenActivity"
android:label="@string/app_name"
android:theme="@style/splashScreenTheme"
android:resizeableActivity="false">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

</activity>

关于android - 禁用分屏android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40259027/

41 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com