Custom Spinner in Android/Spinner using custom adapter/spinner with icon and text In this tutorial, i'll show you to customizing spinner in different methods. To change the normal display of spinner view, add background image using the code " android:background="@drawable/myspinner_background" in the xml. You can also make it customizable by setting up an xml file in drawable folder Custom display with icon in the spinner main.xml <? xml version = "1.0" encoding = "utf-8" ?> < LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android" android:orientation = "vertical" android:layout_width = "fill_parent" android:layout_height = "fill_parent" > < Spinner android:drawSelectorOnTop = "true" android:id = "@+id/spinner1" android:layout_width = "match_parent" and...
If you are a beginner , then this blog will help you to dive into the basics.