在我的应用程序中,我正在使用 webview,在 web 视图中,我正在显示文本,它在小于 4.0 的版本中占据其父级,但在 4.0 版中它没有填充其父级。我为 webview 填充父级提供了宽度,但我能够解决这个问题请帮助我如何解决这个问题。
<?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>";