什么是清单文件条目

时间:2013-12-18 08:59:50

标签: android

Android应用程序的清单条目应该只支持7英寸10英寸平板电脑? 这与以下问题相反 Manifest screen support Entry for Device only and Tablet Only

3 个答案:

答案 0 :(得分:1)

您需要添加以下内容。请阅读Google指南,了解选项及其后果:http://developer.android.com/guide/practices/screens-distribution.html

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

答案 1 :(得分:1)

“根据Android开发者网站的详细信息,Android将实际设备大小分为四个小型,普通,大型和超大型通用组。此外,设备的密度决定了Android设备的分类。

在设置值“支持屏幕”时,您可以处理此

试试这个

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

答案 2 :(得分:0)

你也可以尝试这个

<manifest ... >
    <compatible-screens>
        <screen android:screenSize=“large” android:screenDensity="hdpi" />
        <screen android:screenSize=“large android:screenDensity="xhdpi" />
        <screen android:screenSize=“xlarge” android:screenDensity="hdpi" />
        <screen android:screenSize=“xlarge android:screenDensity="xhdpi" />
    </compatible-screens>
    ...
    <application ... >
        ...
    <application>
</manifest>

Refer this android doc