You can achieve something like this by doing this,
<RelativeLayout android:layout_width="fill_parent" android:id="@+id/myLayout1" android:layout_height="wrap_content"> <EditText android:text="EditText" android:id="@+id/editText1" android:layout_marginTop="5dp" android:layout_width="fill_parent" android:layout_height="wrap_content"> </EditText> <TextView android:text="TextView" android:id="@+id/textView3" android:layout_marginLeft="10dp" android:textColor="#000000" android:background="#FFFFFF" android:layout_width="wrap_content" android:layout_height="wrap_content"> </TextView> </RelativeLayout>

source share