Android 4.0では正常に動作しますが、2.3では画面全体に余分なパディングがあります。画面が実際よりも小さいと思われるようです。私はそれをコンパイルするために4.0.3を使用しています。
私はアプリを開発しています。
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.yolo"
android:versionCode="1"
android:versionName="1.0">
<application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
<activity android:name="Categories"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="Main">
</activity>
</application>
</manifest>
layout.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:id="@+id/text"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_horizontal"
android:textSize="24sp"
android:text="Where are you?"
/>
<Button
android:id="@+id/mall"
android:layout_width="fill_parent"
android:layout_height="75dp"
android:layout_centerInParent="true"
android:text="At the mall"
android:onClick="selectCategory"/>
<Button
android:id="@+id/home"
android:layout_width="fill_parent"
android:layout_height="75dp"
android:layout_centerInParent="true"
android:layout_below="@+id/mall"
android:text="At home"
android:onClick="selectCategory"/>
<Button
android:id="@+id/store"
android:layout_width="fill_parent"
android:layout_height="75dp"
android:layout_centerInParent="true"
android:layout_above="@+id/mall"
android:text="At a store"
android:onClick="selectCategory"/>
<Button
android:id="@+id/downtown"
android:layout_width="fill_parent"
android:layout_height="75dp"
android:layout_centerInParent="true"
android:layout_below="@+id/home"
android:text="Downtown"
android:onClick="selectCategory"/>
</RelativeLayout>
</LinearLayout>