正如此处所见,我的应用程序在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>
手机屏幕上没问题。
答案 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填充它。