gpt4 book ai didi

android - 阻止应用程序在安卓平板电脑上运行

转载 作者:太空宇宙 更新时间:2023-11-03 12:10:42 25 4
gpt4 key购买 nike

我的项目支持手机和 10 英寸平板电脑的单个 apk。然而,手机和平板电脑的用户界面非常不同。我将在下周发布该应用程序,我希望该应用程序暂时仅供手机用户使用。由于测试未完成,平板电脑版本被搁置。 list 中的以下声明是否会阻止应用程序在 10 英寸平板电脑上安装/可见

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

解决方案应该是:这会从 10 英寸(超大)平板电脑中过滤掉应用程序?

<manifest ... >
<compatible-screens>
<!-- all small size screens -->
<screen android:screenSize="small" android:screenDensity="ldpi" />
<screen android:screenSize="small" android:screenDensity="mdpi" />
<screen android:screenSize="small" android:screenDensity="hdpi" />
<screen android:screenSize="small" android:screenDensity="xhdpi" />
<!-- all normal size screens -->
<screen android:screenSize="normal" android:screenDensity="ldpi" />
<screen android:screenSize="normal" android:screenDensity="mdpi" />
<screen android:screenSize="normal" android:screenDensity="hdpi" />
<screen android:screenSize="normal" android:screenDensity="xhdpi" />
<!-- all large size screens -->
<screen android:screenSize="large" android:screenDensity="ldpi" />
<screen android:screenSize="large" android:screenDensity="mdpi" />
<screen android:screenSize="large" android:screenDensity="hdpi" />
<screen android:screenSize="large" android:screenDensity="xhdpi" />
</compatible-screens>
...
<application ... >
...
<application>

最佳答案

Will the below declaration in manifest prevent applications from being installed/visible on 10 inch tablets

没有。通过该 list 条目,您告诉 Android 允许您的应用程序在 -xlarge 上运行设备,而 Android 会做一些额外的工作来尝试让您的 UI 拉伸(stretch)以填满屏幕。

要阻止安装(并从 Play 商店列表中过滤掉),you will need to use <compatible-screens> .

关于android - 阻止应用程序在安卓平板电脑上运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11690774/

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