是否有像 DatePicker 这样的组件用于选择字符串值?
我希望用户能够从字符串值列表(总共大约 25 个)中进行选择,并且喜欢使用 DatePicker 样式组件来执行此操作的想法。然而,我能找到的只是微调器,它是一个下拉框,而我的选择列表对于它来说有点太大了。有没有像 DatePicker 这样的组件我可以使用?
I want the user to be able to select from a list of string values (about 25 in all) and like the idea of using the DatePicker style component to do it. However, all I can find is the spinner which is a drop down box and my selection list is just a little too big for it. Is there a component like DatePicker I can use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Android中没有这样的组件。我有一个主意。
让我们在视图级别使用
AlertDialog
与ListView
的组合。为此,创建一个 AlertDialog,然后创建一个具有列表视图的视图,其中包含通过SimpleAdapter
连接的 25 个字符串元素。完成列表视图和适配器的工作后,进入Alertdialog
并使用AlertDialog.Builder
的setView()
。there is no such component in Android. I have an idea.
lets go with an
AlertDialog
with the combination ofListView
at the view level. To do that create an AlertDialog and then create a view having listview that contains 25 string elements in connected by aSimpleAdapter
. Once you done with the listview and adapter stuff, come to theAlertdialog
and usesetView()
ofAlertDialog.Builder
.文档:向 AlertDialog 添加列表。
The Documentation: Adding a List to AlertDialog.