<ScrollView
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:background="@color/white"
android:fillViewport="true"
android:scrollbars="none" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<WebView
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="6dip"
android:layout_marginLeft="8dip"
android:layout_marginRight="8dip"
android:layout_marginTop="6dip"
android:background="@color/white" >
</WebView>
</LinearLayout>
</ScrollView>
上面的代码如果没有LinearLayout,那么webview就不会滚动。从Android SDK1.6之后就会出现了,即使一个控件,也要加LinearLayout。