0

我正在为 Android 创建一个 VR(虚拟现实)视频播放器。我想将应用程序限制为屏幕尺寸在 4.5 英寸到 6 英寸之间的设备,因为大多数 VR 耳机仅支持此范围内的手机。我不知道我应该在我<compatible-screens></compatible-screens>的里面放什么。

提前致谢!

4

1 回答 1

0

尝试这个 ,

    <supports-screens
    android:anyDensity="true"
    android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="false"
    android:xlargeScreens="false"/>
于 2016-10-11T05:53:01.177 回答