【发布时间】:2012-01-28 02:52:21
【问题描述】:
ICS 上的 Webview 看起来很糟糕。下面的代码在 2.x 模拟器上不显示任何内容,但在 ICS 模拟器上显示半页白屏。下面的布局是用于测试 porpuses。如果我在 ICS 上的 webview 中放置一些 html 来呈现它,它不会显示半页然后继续像它呈现了一半但我只看到白色的空白区域。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<WebView
android:id="@+id/webView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</WebView>
</LinearLayout>
有人知道吗?
【问题讨论】: