gpt4 book ai didi

android - 如何设置最小屏幕尺寸?

转载 作者:太空狗 更新时间:2023-10-29 16:05:54 26 4
gpt4 key购买 nike

我创建了一个新的应用程序,它不适用于手机。我的应用程序基于 7"平板电脑设备。当我尝试将我的应用程序放入 Play 商店时,它显示我的应用程序支持 2000 台安卓设备,但并非所有设备都是平板电脑。实际上,我不想搜索所有设备并设置过滤器,你知道为什么!

我如何在我的应用程序中以编程方式声明最小屏幕尺寸,就像我可以设置最小 sdk 级别一样。

更新:

我是在AndroidManifest.xml中设置的<compatible-screens><supports-screens>像那样:

<supports-screens android:requiresSmallestWidthDp="600"
android:smallScreens="false"
android:normalScreens="false"
android:largeScreens="false"
android:xlargeScreens="true"
/>


<compatible-screens>
<screen android:screenSize="xlarge" android:screenDensity="xhdpi"/>
<screen android:screenSize="xlarge" android:screenDensity="ldpi"/>
<screen android:screenSize="xlarge" android:screenDensity="hdpi"/>
<screen android:screenSize="xlarge" android:screenDensity="mdpi"/>


</compatible-screens>

现在我的应用仅适用于 7 英寸以上的平板电脑。

最佳答案

您需要使用 <supports-screens>正如 DJHacktorReborn 建议的那样,但不仅仅是 android:requiresSmallestWidthDp ,因为 Play 商店不使用它进行过滤。

相反,使用:

<manifest ... >
<supports-screens android:smallScreens="false"
android:normalScreens="false"
android:largeScreens="true"
android:xlargeScreens="true"
android:requiresSmallestWidthDp="600" />
...
<application ... >
...
</application>
</manifest>

参见 the documentation了解更多。

关于android - 如何设置最小屏幕尺寸?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15314667/

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