테스트 기기는 갤럭시 s구요


제가 하고 싶은건 웹뷰에서 재생되는 동영상위에 이미지뷰로 가운데만 뚫려있는 이미지를 보여줘서 이미지를 어느정도


가려지면서 보이기를 원하고 있습니다. 그래서 xml로


 <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >
    <WebView 
        android:id="@+id/alpha_view"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        />
    <ImageView
        android:id="@+id/bg_swf"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:scaleType="fitXY"
        android:src="@drawable/bg_swf" 
        />
</RelativeLayout>

 

이렇게 사용중인데 웹뷰가 자꾸 위로 올라오고 이미지뷰가 밑에 깔려버립니다. 해결방법이 있을까요???