2

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?

IAmInPLS
  • 4,051
  • 4
  • 24
  • 57
karthik
  • 321
  • 1
  • 8
  • 21

1 Answers1

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:

1) List of countries and their cities in android

2) Retrieve a list of countries from the android OS

Community
  • 1
  • 1
Däñish Shärmà
  • 2,891
  • 2
  • 25
  • 43