单击内容后 Webview 消失
Webview disappears after clicking content
点击 webview 内容后,webview 内容消失。
<WebView
android:id="@+id/squadWebView1"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
webviewSquad1.getSettings().setJavaScriptEnabled(true);
webviewSquad1.loadDataWithBaseURL("", String.valueOf(dataSnapshot.getValue()), "text/html", "UTF-8", "");
webviewSquad1.setHorizontalScrollBarEnabled(false);
我有两个 webview,一个是这样的。
在我更正格式错误的超链接作为响应后解决了一个问题。美妙之处在于内容按预期加载。
点击 webview 内容后,webview 内容消失。
<WebView
android:id="@+id/squadWebView1"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
webviewSquad1.getSettings().setJavaScriptEnabled(true);
webviewSquad1.loadDataWithBaseURL("", String.valueOf(dataSnapshot.getValue()), "text/html", "UTF-8", "");
webviewSquad1.setHorizontalScrollBarEnabled(false);
我有两个 webview,一个是这样的。
在我更正格式错误的超链接作为响应后解决了一个问题。美妙之处在于内容按预期加载。