0

我试图在 AndroidManifest 文件中指定我的应用程序只能在尺寸大于 7 英寸的平板电脑上运行。

我在 AndroidManifest.xml 文件中使用了以下代码:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.iscte.dcti.daam.letters4kids"
    android:versionCode="1"
    android:versionName="1.0" >


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

        <screen android:screenSize="xlarge"
                android:screenDensity="mdpi" />


        <screen android:screenSize="xlarge"
                android:screenDensity="hdpi" />


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

.....

问题是我在 GenyMotion 上具有 5 英寸英寸的虚拟设备“Google Nexus 5”上测试了 .APK,并且成功安装并启动了 .APK!

我不想要那个!我不想在小于 7 英寸的屏幕上安装应用程序,为什么不工作?

4

1 回答 1

0

与此类似的东西应该可以完成这项工作(来自http://developer.android.com/guide/practices/screens-distribution.html#FilteringTabletApps):

<manifest ... >
    <supports-screens android:smallScreens="false"
                      android:normalScreens="false"
                      android:largeScreens="true"
                      android:xlargeScreens="true"
                      android:requiresSmallestWidthDp="600" />
    ...
   <application ... >
    ...
   </application>
</manifest>
于 2014-06-29T21:54:33.303 回答