0

我想添加平板电脑和智能手机版本。我如何在 Google Play 中做到这一点?

我必须将我的平板电脑应用程序设置为

android:xlargeScreens="true"
android:largeScreens="true" 
android:normalScreens="false" 
android:smallScreens="false" 

和我的智能手机应用程序:

android:xlargeScreens="false"
android:largeScreens="false" 
android:normalScreens="true" 
android:smallScreens="true" 

什么是

android:resizeable="true" 
android:anyDensity="true" 

意思是?

我已经阅读了开发者网站信息,但我不明白请帮助我!谢谢

4

1 回答 1

2
Pls ref [Use Compatible screen][1]

应用程序定位手机的清单应具有:

<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>
<!-- all large size screens 7" -->
<screen android:screenSize="large" android:screenDensity="ldpi" />
<screen android:screenSize="large" android:screenDensity="mdpi" />
<screen android:screenSize="large" android:screenDensity="hdpi" />
<screen android:screenSize="large" android:screenDensity="xhdpi" />

<!-- all xlarge size screens 10" -->
<screen android:screenSize="xlarge" android:screenDensity="ldpi" />
<screen android:screenSize="xlarge" android:screenDensity="mdpi" />
<screen android:screenSize="xlarge" android:screenDensity="hdpi" />
<screen android:screenSize="xlarge" android:screenDensity="xhdpi" />

于 2013-06-29T15:55:01.637 回答