从独立微调器填充从属微调器
我有一个 Spinner 对象,其中包含填充有美国 50 个州的字符串数组。
我还有一些数组,其中包含不同州的城市列表。我想要做的是将其他微调器选择的州的城市数组填充到依赖微调器中。
例如:
选择的第一旋转者 - 阿拉斯加
第二旋转者 - 安克雷奇、费尔班克斯、凯奇坎、科迪亚克。
另一个例子:
选择的第一旋转者 - 佛罗里达州
第二旋转者 - 塔拉哈西基韦斯特。
问题是我不确定如何根据所选的状态微调器填充依赖微调器。
我正在使用的数组适配器接受一个整数值,该值引用用于填充微调器的数组。
I have a Spinner object that contains an array of strings populated with the 50 states in the United States.
I also have some more arrays that contain lists of cities for the different states. What I am wanting to do is to populate the dependent spinner with the array of cities from the state that was selected by the other spinner.
For exampe:
First spinner selected - Alaska
Second spinner - Anchorage, Fairbanks, Ketchikan, Kodiak.
Another example:
First spinner selected - Florida
Second spinner - Key West, Tallahassee.
The problem is that I'm not sure how to populate the dependent spinner based on the state spinner selected.
The Array Adapter that I am using accepts an integer value that references the array that is used to populate the spinner.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道您正在使用的确切 API 调用,但这是我使用的一般方法:
稍后您可能会这样做来填充城市和州
稍后您可能会这样做来将城市移出
I don't know the exact API calls you're using, but here's the general approach I'd use:
And later you might do this to populate the cities and states
And later you might do this to get the cities out