我的WebView出现了一些奇怪的问题。问题是如果它比屏幕长,我无法在Android 2.2和2.3中滚动页面。滚动WebView的唯一方法是在Android 4.0.3中。有什么问题,或者是否无法在低于4.0.3的Android版本中滚动WebView?
这是我的布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent" android:id="@+id/rltvLayout01"
android:layout_height="fill_parent" android:background="@color/white">
<LinearLayout android:id="@+id/LinearLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/ad_layout">
<WebView android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:scrollbars="none" />
</LinearLayout>
<LinearLayout android:id="@+id/ad_layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true">
<com.google.ads.AdView android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
ads:adUnitId="-------------"
ads:loadAdOnCreate="true"
ads:adSize="BANNER" />
</LinearLayout>
</RelativeLayout>
编辑23:06:
我刚刚发现了这个问题!我正在使用的实际代码不会导致此行为,它是导致问题的加载网站。在我的移动网站中,我正在使用视口来正确显示它,而FroYo和Gingerbread的WebView无法很好地处理。因此,删除视口元标记后,它完美无缺!无论如何,感谢托马斯K,垂直方向也在移除视口后可以滚动!
如果你想让你的网页浏览工作在Froyo和Gingerbread中,请删除html代码中的视口标记!
答案 0 :(得分:1)
添加
android:orientation="vertical"
或
android:orientation="horizontal"
到LinearLayout