我写了一个针对Android 2.2的Android应用程序 现在,在Android 3.1平板电脑上运行它只显示屏幕的一半。我知道这是一个着名的问题,并阅读了android的支持多屏幕页面。
下面是我的清单文件。让我知道我做错了什么。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="graphics.brick"
android:versionCode="1"
android:versionName="1.0">
<supports-screens android:xlargeScreens="true" />
<application android:icon="@drawable/icon"
android:label="@string/app_name"
android:debuggable="true">
<activity android:name=".BrickActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="11"/>
</manifest>
答案 0 :(得分:0)
在你的模板文件中,将wrap_content更改为fill_parent,如下所示:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">