<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#ffffff"
    >
<ImageView
android:padding="0dip"
android:layout_alignParentTop="true" 
android:layout_width="fill_parent" 
    android:layout_height="wrap_content"
android:id="@+id/maintop"
android:src="@drawable/maintop"
>
</ImageView>

<ImageView 
android:paddingLeft="20dip"
android:paddingTop="7dip"
android:layout_alignParentTop="true" 
android:layout_height="wrap_content" 
android:layout_width="wrap_content" 
android:src="@drawable/tbutton" 
android:id="@+id/back"
>
</ImageView>

<ImageView
android:layout_below="@id/maintop"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:src="@drawable/daebudo01s"
android:id="@+id/daebudo01s"
>
</ImageView>

<WebView
android:id="@+id/webkit"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
</WebView>

</RelativeLayout>

이런식으로 레이아웃을 짯는데

그림뜨더니 갑자기 인터넷 화면으로 바뀝니다.

이렇게 안되고

제가 원하는 그림띄우고 바로 아래에 

브라우저 띄우고싶은데 어떻게 안되나요~?