我在 iPhone 中创建了一个应用程序,它工作正常,因为所有 iPhone 的屏幕尺寸都相同。
现在我使用 Titanium studio 为 Android 创建了相同的应用程序。
该应用程序在 Galaxy S3(和 Nexus 7)中运行良好,但我担心如果我想限制其他 Android 设备使用我的应用程序怎么办?
我该怎么做呢?任何的意见都将会有帮助。
注意:我在模拟器中使用的屏幕尺寸WXGA720
和WVGA800
谢谢。
在清单中添加这个(只添加你想要的兼容屏幕):
<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>