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.

http://prntscr.com/gb3oh9

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

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -