2011-05-17 121 views
2

我正在使用IO發佈的新的10.1 galaxy tab谷歌。我是新來的android佈局,但在Eclipse中的圖形佈局看起來不錯,但我的應用程序不會填充選項卡上的父級。fill_parent不填充父項?

這是我main.xml

<?xml version="1.0" encoding="utf-8"?> 
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
     android:orientation="vertical" 
     android:background="@color/red" 
     android:layout_width="fill_parent" android:layout_height="fill_parent"> 
</LinearLayout> 

這是我看到screenshot

回答

5

下一個標籤給您AndroidManifest.xml

<manifest> 
... 
    <supports-screens  
     android:resizeable="true" /> 
</manifest> 

你可以找到更多信息添加這個標籤here

+0

在你給它說,這應該是默認的真實鏈接,使得它聽起來就像它已經從1.6棄用 - 事實上,它說: 「你不應該使用它」。爲什麼不是上面的用戶默認(至少使用Android 3)? – ace 2012-01-18 20:06:51