Retrieve a list of countries from the android OS
You might get some idea from the Locale class. Call getAvailableLocales() then iterate the array & getDisplayCountry(). If it is the first time you’ve seen that country name, add it to an expandable list (e.g. an ArrayList instance). E.G. In Java, but the 3 classes from java.util are all available in Android. import java.util.*; class … Read more