如何在android中制作自定义城市选择器

时间:2016-10-26 18:39:34

标签: android

您好我想制作一个自定义城市选择器。城市名称将来自api。 我想在图片中显示它们。单击搜索按钮时将选择中间城市。但我想不出办法去做。 任何帮助?

The image shows the details

1 个答案:

答案 0 :(得分:0)

听起来很奇怪,您可以使用数字选择器来显示和选择国家/地区:

NumberPicker picker = new NumberPicker(this);
picker.setMinValue(0);
picker.setMaxValue(countries.length()-1);
picker.setDisplayedValues(countries);

countries变量是一个字符串数组。