您好我想制作一个自定义城市选择器。城市名称将来自api。 我想在图片中显示它们。单击搜索按钮时将选择中间城市。但我想不出办法去做。 任何帮助?
答案 0 :(得分:0)
听起来很奇怪,您可以使用数字选择器来显示和选择国家/地区:
NumberPicker picker = new NumberPicker(this);
picker.setMinValue(0);
picker.setMaxValue(countries.length()-1);
picker.setDisplayedValues(countries);
countries变量是一个字符串数组。