对于像素密度高于 400ppi 且低于 500ppi 的设备,例如 Sony Xperia Z2、One Plus 2 等,Google Play 商店中没有显示一个应用程序。以前,它也没有出现在三星 Galaxy S6 或其他像素密度高于 500ppi 的高端设备上。但是在添加下面的代码后它开始显示。
<screen android:screenSize="small" android:screenDensity="560" />
<screen android:screenSize="small" android:screenDensity="640" />
<screen android:screenSize="normal" android:screenDensity="560" />
<screen android:screenSize="normal" android:screenDensity="640" />
<screen android:screenSize="large" android:screenDensity="560" />
<screen android:screenSize="large" android:screenDensity="640" />
我可以在清单中指定小于 500ppi 的屏幕密度,还是有任何规则,比如我们只能给出多个屏幕密度?我不知道,任何帮助都会很棒。