2011-11-03 24 views
0

我一直在使用新的Android更新2.3.4爲我的Droid x2編寫應用程序。 帶有簡單測試應用程序的佈局在屏幕的左側,右側和按鈕側顯示邊距。 如何獲得屏幕的完整不動產?Droid x2 Android 2.3.4佈局問題

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:background="@color/white" 
> 
<TextView 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="Hello World, MainActivity" 
/> 
</LinearLayout> 

截屏:http://jasonfoglia.com/img/DROIDX2.png

回答