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.
我的微调器之间有一些依赖关系,它发生了,微调器变空了。
现在的问题是,我不知道如何清除微调器,我正在采用适配器的数据,通知适配器,如果我单击微调器,那里没有值,但微调器的选定项是未清除,仍然显示...
我不确定您想要什么,但要删除微调器中的所有项目,您可以将适配器设置为 null,如下所示:
mySpinner.setAdapter(null);
如果您想删除特定项目,则应将其从适配器中删除并再次设置微调器
mySpinner.setAdapter(myAdapter);