웹뷰을 혼합 한 레이아웃 입니다
상단 웹뷰는 내용이 길어지면 높이가 늘어나야 합니다 헌데 항상 공백이 생겨 그림첨부한 곳처럼 비어있습니다
또 하단의 리스트가 보이는 웹뷰는 스크롤 설정을 했는데 html의 바탕이 검은색 스크롤의 바탕이 하얀색으로 나옵니다
 스크롤을 없애고 스크롤뷰로 감쌀경우에는 웹뷰에서 리스트 되는 길이가 길어지네요 리스트가 끝나고도 한참을 공백으로 내려가스크롤이 멈춥니다
해결을 어찌 해야 할지요?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
 android:id="@+id/widgeta1168"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical"
 >
 <WebView
 android:id="@+id/wv_quiz"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:scrollbars="none"
 android:focusable="false"
 android:clickable="false"
 android:background="#ff000000"
 >
 </WebView>
 <LinearLayout
  android:id="@+id/widget33"
     android:orientation="horizontal"
     android:layout_width="fill_parent"
     android:layout_height="43dp"
     android:background="@drawable/border"
     android:gravity="center"
     >
  <Button
   android:id="@+id/btn_save"
   android:layout_width="wrap_content"
   android:layout_height="37dp"
   android:text="question"
   android:layout_weight="1"
  >
  </Button>
  <Button
   android:id="@+id/btn_save2"
   android:layout_width="wrap_content"
   android:layout_height="37dp"
   android:text="answer"
   android:layout_weight="1"
  >
  </Button>
 </LinearLayout>
 <WebView
 android:id="@+id/wv_quizlist"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:focusable="false"
 android:clickable="false"
 android:background="#ff000000"
 >
 </WebView>
</LinearLayout>