0

可能重复:
安装在 atrix 手机上时构建的 Android 应用程序仅使用部分屏幕

问题是应用程序屏幕只占了 Atrix 物理屏幕的一半

我尝试通过添加代码(如下所示)来解决它,但没有帮助;

android:fitsSystemWindows="true"
android:minHeight="960dp"
android:minWidth="540dp"

有什么建议吗?

4

1 回答 1

0

I had this problem when the android:minSdkVersion was set to 3 in the AndroidManifest.xml

<uses-sdk android:minSdkVersion="3" />

When I set it to something higher than 3, it used the whole screen. For example:

<uses-sdk android:minSdkVersion="8" />
于 2012-01-17T21:47:16.417 回答