1. List of Items in Spinner Open “res/values/strings.xml” file, define the list of items that will display in Spinner (dropdown list). ======= File : res/values/strings.xml ============= [tpcode] MyAndroidApp Choose a country Malaysia United States Indonesia France Italy Singapore New Zealand India [/tpcode] 2. Spinner (DropDown List) Open “res/layout/main.xml” file, add two spinner components and a button. In “spinner1”, the “android:entries” represents the selection items in spinner. In “spinner2”, the selection items will be defined in code later. ============== File : res/layout/main.xml ============== [tpcode]