让旋转器在 Android 中点击时执行操作?
我有一个微调器,我想要它,以便当单击实际微调器(而不是其中的项目)时执行一些代码,就像按钮一样。这可能吗?谢谢。
i have a spinner and i want it so that when the actual spinner is clicked (not an item inside it) to execute some code, like a button does. is this possible?? thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想尝试为 setOnCreateContextMenuListener(OnCreateContextMenuListener Listener) 我不确定这是否有效。您还可以尝试为 setOnTouchListener(OnTouchListener 监听器)。这两个都将设置在微调器对象上。尝试其中任何一个,当您实际单击微调器时,它们可能会被解雇。
前任:
You might want to try and set a listener for setOnCreateContextMenuListener(OnCreateContextMenuListener listener) I'm not sure if that will work. You could also try and set a listener for setOnTouchListener(OnTouchListener listener). Both of those would be set on the spinner object. Try either of those they might get fired when you actually click the spinner.
Ex: