I have a drawable with ractangle shape now i have use that drawable as the background for the spinner so my spinner looks like a ractangle. now i am thinking that how can add some down arrow (which will be image) to the right side of that drawable. its like right side of that ractangle would be down arrow but its a part of that drawable. below is my xml for ractangle
<?xml version="1.0" encoding="utf-8"?>
<!-- res/drawable/editdraw.xml -->
<shape
xmlns:android="http://schemas.android.com/apk/res/android">
<corners android:radius="3dp"/>
<stroke android:width="2px" android:color="#666666"/>
</shape>
in this xml can i do some magic so image can be added..
or else any body have some different method to implement it than just share with me. if i am wrong than please suggest me also.