आप एक आकृति में एक पृष्ठभूमि छवि कैसे जोड़ते हैं? कोड मैंने नीचे आज़माया लेकिन कोई सफलता नहीं:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" android:padding="10dp">
//here is where i need to set the image
<solid android:color="@drawable/button_image"/>
<corners
android:bottomRightRadius="5dp"
android:bottomLeftRadius="5dp"
android:topLeftRadius="5dp"
android:topRightRadius="5dp"/>
</shape>
आपको कस्टम आकार के वर्ग का विस्तार करने और बनाने की आवश्यकता है। उदाहरण के लिए RoundedImageView देखें। यह एक राउंड इमेजव बनाता है, इसलिए जो भी iamge आप इसे बैकग्राउंड के रूप में सेट करते हैं, वह राउंडेड दिखाई देगा
—
राहुल गुप्ता