テキストビューがあり、その角を丸くしたい。を使用して実行できることは既に知っていますandroid:background="@drawable/somefile"
。私の場合、このタグはすでに含まれているため、再度使用することはできません。たとえばandroid:background="@drawable/mydialogbox"
、バックグラウンドで画像を作成するために既に存在します
<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="@drawable/mydialogbox"
android:orientation="horizontal" >
<TextView
android:id="@+id/textview_name"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />
</LinearLayout>
</RelativeLayout>
textview(textview_name)
では、角を丸くしたい場合は、どうすればこれを実現できますか。