Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 android 很陌生,但我对 spinners 印象深刻。我只想知道是否有可能有一个微调器(填充城市)以及当用户选择一个城市时,然后刷新并显示与该城市相关的记录?
我将处理 json 解析和所有,但我想知道这是否可能?还是有更好的城市过滤方法?任何例子将不胜感激
对的,这是可能的。更改第一个微调器的数据后,用新数据存储第二个微调器适配器,然后调用notifyDataSetChanged()第二个微调器适配器的方法。
notifyDataSetChanged()
例如,我假设您将数据存储在list. 在存储新数据之前,使用清除以前的数据list.clear(),然后存储新数据。然后打电话
list
list.clear()
spinnerAdapter.notifyDataSetChanged();
我希望这能帮到您。