1

我的 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 不能很好地处理它。因此,在删除视口元标记后,它可以完美运行!无论如何谢谢Thomas K,垂直方向在移除视口后也使其可滚动!

因此,如果您想让您的 web 视图在 Froyo 和 Gingerbread 中工作,请摆脱 html 代码中的 viewport 标签!

4

1 回答 1

1

添加

android:orientation="vertical"

或者

android:orientation="horizontal"

到线性布局

于 2012-05-11T14:04:49.803 回答