在微调器中选择项目后更新内容
又是我。我在过去的几个小时里尝试了如何更改微调器的内容。 好吧,让我们从头开始。
我有三个旋转器。它们都有初始值。第一个旋转器是主旋转器,其他两个旋转器取决于第一个旋转器中选择的值。因此,我想在第一个微调器中进行选择后更新最后两个微调器。 *编辑:所有旋转者都在进行相同的活动。
我怎样才能做到这一点?我的问题是我只能在 itemselectadapter 上的微调器中进行更改,但这是一个全新的类。我无法到达其他旋转器所在的活动。
谢谢
its me again. I tried the last hours, how to change content of a spinner.
ok, lets start from the beginning.
I have three spinners. They all have initial values. The first spinner is the main spinner and the other two spinners depend on the vale chosen in the first one. So i want to update the last two spinners after making a selection in spinner one. *edit: All spinners are on the same activity.
How can i achieve this? My problem is that i can only make changes in the spinners onitemselectadapter but thats a whole new class. I cannot reach the activity where my other spinners are.
thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的旋转者从事不同的活动吗?
如果是,那么您可以通过 Intent(请参阅 putExtra 部分)并从下一个活动中检索值,以便您可以相应地设置下一个微调器。
编辑:
这是一个更改第二个和第三个微调器中所选项目的示例。 更新侦听器(onItemSelected 方法)
使用您的逻辑Activity
: main.xml:
Are your spinners in different activities?
If they are, so you can just pass the selected value of the first spinner via Intent (See the putExtra section) and retrieve the value from the next activity so that you can set accordingly the next spinners.
Edit:
Here is an example that changes the selected item in the 2nd and 3rd spinner. Update the listener (onItemSelected method) with your logic
Activity:
main.xml: