在 Android Spinner 上添加提示
我正在制作一个小应用程序,并且有一个旋转器。现在,当应用程序加载时,它会将微调器的第一个选项显示为微调器上的文本。我希望它在加载应用程序时显示一些特殊的文本,例如提示。但是,当您按下微调器并调出选项时,我希望它能够显示原始选项。就像现在一样,当您加载应用程序时,它会显示选项号 0,但我希望其上的文本显示其他字符串。
这可能吗?
I'm making a tiny application, and I have a spinner. Right now it shows the first option of the spinner as the text on the spinner when the application loads. I'd like it to show some special text like a hint when it loads the application. But when you press the spinner and get up the options, I would love for it to show the original options. Like right now it shows option number 0 when you load the application, but I want the text on it to say some other string.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我通过使用按钮而不是微调器来处理这个问题。 我在 GitHub 上有示例项目。
在该项目中,我同时显示 Spinner 和按钮表明它们确实看起来相同。除了按钮之外,您可以设置任何您想要的初始文本。
该活动如下所示:
I handle this by using a button instead of a Spinner. I have the sample project up on GitHub.
In the project, i'm displaying both the Spinner and button to show that they indeed look identical. Except the button you can set the initial text o whatever you want.
Here's what the activity looks like:
假设现在 0 被选中,但是当应用程序加载时,它设置了其他字符串,哪个选择在 onItemSelected 方法中
Suppose now 0 is Selected But when App loading it set other String Which selection is in onItemSelected method