我的Android WebView不可滚动。

XML代码:

xmlns:tools="http://schemas.android.com/tools"

android:id="@+id/screen"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:background="#87cefa"

android:gravity="left"

android:paddingBottom="@dimen/activity_vertical_margin"

android:paddingTop="@dimen/activity_vertical_margin"

tools:context=".MainActivity" >

android:id="@+id/webView"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_alignParentLeft="true"

android:layout_centerHorizontal="true" />我使用普通的webview.loadUrl(url);函数加载网站,有时使用webview.loadDataWithBaseURL("", htmlContent, "text/html", "UTF-8", "");函数加载网站,它们都显示页面,但它们不可滚动

在里面:

setContentView(R.layout.activity_main);

webview = (WebView)this.findViewById(R.id.webView);

webview.setVerticalScrollBarEnabled(true);

webview.setHorizontalScrollBarEnabled(true);

加载:

webview.loadUrl(url);

[either one of them or the other]

webview.loadDataWithBaseURL("", htmlContent, "text/html", "UTF-8", "");

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐