我正在使用IO发布的新的10.1 galaxy tab google。我是Android布局的新手但是eclipse中的Graphical Layout看起来不错,但是我的应用程序没有填充选项卡上的父级。
这是我的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>
这就是我看到的
答案 0 :(得分:5)
将下一个标记添加到AndroidManifest.xml
<manifest>
...
<supports-screens
android:resizeable="true" />
</manifest>
您可以找到有关此标记的更多信息here。
答案 1 :(得分:0)
也许屏幕兼容模式的这种解释有助于解决问题: http://developer.android.com/guide/practices/screen-compat-mode.html