하나의 xml안에 여러개 include를 사용할려고 하는데 안됩니다

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="fill_parent" android:layout_height="fill_parent"
 android:id="@+id/linear" android:orientation="vertical">
  <include layout="@layout/top" android:id="@+id/top"
  android:layout_width="fill_parent" android:layout_height="70px"
  android:layout_alignParentTop="true"
  />
    <WebView android:id="@+id/menuWebView" android:layout_height="wrap_content"
    android:layout_width="fill_parent"
    />
  <include layout="@layout/footmenu" android:id="@+id/groupmenu_bottom"
  android:layout_width="fill_parent" android:layout_height="50px"
  android:layout_alignParentBottom="true"
   />
</LinearLayout>

 

위와 같이 했는데 2개의  include중에 처음에는 2개다 보이고 웹뷰에 사이트가 다 떠면 한개의 include만 보입니다

위처럼

include  ---- 1

webview -- 2

include --- 3

이렇게 3개다 보이게 할수는 없나요?

도와주세요