スクロール コンテナーに複数の WebView を追加したいと考えています。これを行うために、LinearLayout 内にプログラムで追加しています。
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollView"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:id="@+id/webViewContainer"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
/>
</ScrollView>
問題は、loadDataWithBaseURL() メソッドを使用して WebViews にデータをロードしているときに、WebViews の下部に余分なスペースが残っていることです。この問題の適切な解決策を見つけることができません。なぜそれが起こっているのか誰か教えてください。