如何获得国家及城市名单?

时间:2016-04-04 10:00:37

标签: android google-api

任何人都可以帮助我获取国家列表和城市列表吗? 获取这些列表是否有谷歌Api?

1 个答案:

答案 0 :(得分:3)

尝试一次:

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());

}

并将列表设置为适配器。

我认为要让城市使用网络服务。

请参阅以下链接:

1)List of countries and their cities in android

2)Retrieve a list of countries from the android OS