How to customize Spinner Background in android? -
i want change spinner in android , want same devices. tried same failed so. if use tag, not able customize it. adding screenshot of image of how want.
try this:
<selector xmlns:android="http://schemas.android.com/apk/res/android"> <item> <layer-list> <item> <shape android:shape="rectangle"> <solid android:color="@color/white" /> <stroke android:width="2px" android:color="@color/darkgray_7" /> <corners android:radius="5dp" /> </shape> </item> <item> <bitmap android:gravity="right" android:src="@drawable/arrow" /> </item> </layer-list> </item> </selector>
Comments
Post a Comment