应用程序在Android 3.0平板电脑上缩小

时间:2011-12-22 09:48:49

标签: java android xml screen shrink

正如此处this picture所见,我的应用程序在Android 3.0的三星Galaxy Tab上缩小了

它在模拟器中也会缩小,但在图形布局中看起来还不错。 main.xml中:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:orientation="vertical"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"
    >

<WebView android:id="@+id/web_engine"
         android:layout_width="fill_parent"
         android:layout_height="fill_parent"
        />
</LinearLayout>

手机屏幕上没问题。

3 个答案:

答案 0 :(得分:2)

您的应用看起来像某种Screen Compatibility Mode。请点击此链接,了解AndroidManifest.xml中的哪些条件可能会导致您的应用进入此状态。

答案 1 :(得分:1)

很可能不包括Manifest中的xLargeScreens:

http://developer.android.com/guide/topics/manifest/supports-screens-element.html

希望这是/并且有帮助。

 <supports-screens android:resizeable="true"
    android:smallScreens="true"
    android:normalScreens="true"
    android:largeScreens="true"
    android:xlargeScreens="true" 
    android:anyDensity="true"/>

应该有所帮助。

答案 2 :(得分:1)

你的Android XML看起来很好,除非你有大型/ xlarge屏幕的不同布局资源,否则很难看出这可能是一个问题。

考虑问题可能不是在Android XML中,而是在显示的HTML / CSS中?也就是说,您在屏幕上看到一个大型webview,只有一小部分HTML填充它。