私のアプリケーションでは webview を使用していますが、4.0 未満のバージョンでは親を占有しているテキストを表示していますが、バージョン 4.0 では親を埋めていません。この問題を解決する方法を教えてください。
<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tv"
android:layout_width="fill_parent"
android:layout_height="match_parent" >
</WebView>
およびデータとして
String data = "<html><head><meta name=\"viewport\"\"content=\"width=device-width,initial-scale=0,maximum-scale=0,user-scalable=no,target-densitydpi=device-dpi\" /></head>";
data = data + "<body><center><img width=\"" + width + "\" src=\""
+ topImage + "\" /></center></body></html>";