Can any one help me to get a list of countries and a list of their cities? Is there any google Api for getting these lists?
Asked
Active
Viewed 5,723 times
2
-
http://www.geodatasource.com/world-cities-database/free – Nirav Ranpara Apr 04 '16 at 10:04
1 Answers
6
Try this once:
ArrayList<String> list=new ArrayList<String>();
String[] locales = Locale.getISOCountries();
for (String countryCode : locales) {
Locale obj = new Locale("", countryCode);
System.out.println("Country Name = " + obj.getDisplayCountry());
list.add(obj.getDisplayCountry());
}
and set the list to adapter.
I think to get cities you have to use webservices.
Refer these links:

Community
- 1
- 1

Däñish Shärmà
- 2,891
- 2
- 25
- 43