Please let me know how I can change background colour for a spinner in Android.
<Spinner
android:id="@+id/addData"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/blue" />
Above code adds the colour BLUE but it also hides the default drop down icon. Is there a way without using custom background xml to add colour and not hide the icon?
Thanks Abhinav Tyagi