Rounded corner for textview in android

I have a textview and want its corner to be in round shape. I already know it can be done using android:background=”@drawable/somefile”. In my case, this tag is already included so cannot use again. e.g android:background=”https://stackoverflow.com/questions/18781902/@drawable/mydialogbox” is already there to create image in background <RelativeLayout xmlns:android=”http://schemas.android.com/apk/res/android” android:layout_width=”wrap_content” android:layout_height=”fill_parent” android:layout_gravity=”top” android:background=”https://stackoverflow.com/questions/18781902/@drawable/mydialogbox” android:orientation=”horizontal” > <TextView android:id=”@+id/textview_name” android:layout_alignParentTop=”true” … Read more