I am very new in as a android developer and i am currently understanding the RelativeLayout but facing a smaller problem that Textview is overLapping on the Image. Here I am providing you the Image that what i want and what i am getting and also the code that much i have did. so please Help me.
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/firstImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="@drawable/splash1" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignTop="@id/firstImage"
android:layout_alignBaseline="@id/firstImage"
android:text="@string/menu" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:src="@drawable/splash1" />
</RelativeLayout>
Here is the Image that i want in layout.

Please Help me.
Thanks in Advance..
use these property
for text view..
check this code