如何通过 onclick 在 android 中的另一个微调器上更改一个微调器上的数据?
我有两个旋转器 spinner1 &旋转器2。在一个微调器中,我显示数据库中的名称。(例如 onkar)现在,如果我在 spinner1 上选择 onkar 名称,则除了名称 onkar 之外,所有名称都必须出现在 spinner2 上。 我想这样做。但我不知道如何实现它? 给我一些样本或给出相同的想法。
或者我可以动态更改微调器的数据吗??? 提前致谢 -
all i have two spinners spinner1 & spinner2. in one spinner i am showing names from database.(Ex. onkar) now if i select onkar name on spinner1 then all names must be occurred on spinner2 except name onkar.
i want to do like this.but i am not getting how to achieve it?
give me some sample or give idea for the same.
or can i change data of spinner dynamically????
Thanks in Advance--
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
考虑到您使用了两个适配器将数据设置为微调器,当您选择第一个微调器时,只需从第二个适配器中删除该值,然后调用方法notifyDataSetChanged(),它将更改第二个微调器数据。
consider that u have used two adapters to set data to spinner when u select first spinner just remove that value from second adapter and then call method notifyDataSetChanged() it will change second spinner data.