根据屏幕尺寸限制应用下载(Android - Titanium Studio)

时间:2012-10-18 13:55:50

标签: android titanium

我已经在iPhone中创建了一个应用程序,它可以很好地工作,因为所有iPhone的屏幕尺寸相同。

现在我使用Titanium studio为Android创建了相同的应用程序。

该应用程序在Galaxy S3(和Nexus 7)中运行良好,但我担心的是如果我想限制其他Android设备使用我的应用程序?

我该怎么做?任何建议都会有所帮助。

注意:我在模拟器中使用的屏幕尺寸WXGA720WVGA800

感谢。

1 个答案:

答案 0 :(得分:1)

在清单中添加它(仅添加所需的兼容屏幕):

<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" />
    </compatible-screens>
    ...
    <application ... >
        ...
    <application>
</manifest>