Проблема с разрешением экрана приложения Android - PullRequest
0 голосов
/ 11 августа 2011

Я написал Android-приложение для Android 2.2. Теперь, когда он работает на планшете 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>

1 Ответ

0 голосов
/ 11 августа 2011

В вашем файле шаблона измените 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">
...