मेरे पास एक टेक्स्टव्यू है और चाहते हैं कि इसका कोना गोल आकार में हो। मुझे पहले से ही पता है कि इसका इस्तेमाल किया जा सकता है 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)
राउंड कॉर्नर भी चाहता हूं , तो यह कैसे हासिल किया जा सकता है।