ArrayAdapter.getPosition(item) 返回什么?
我看到文档说这个方法返回给定项目的位置,但是如果 ArrayAdapter 中不存在这样的项目,它会返回什么?
I see the documentation says this method returns the position of the given item, but what would it return if no such item exists in the ArrayAdapter?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看源代码后,我发现 ArrayAdapter 使用
List.indexOf(Object)
来查找对象,当该对象不存在时,此方法返回 -1。GrepCode 非常适合在文档不好时查找内容,我每天至少使用一次:)
来源: GrepCode
After looking through the source code I've found that the ArrayAdapter uses
List.indexOf(Object)
to find the object and this method returns -1 when it doesn't exist.GrepCode is awesome for finding stuff when the documentation is bad, I use it at least once a day :)
Source: GrepCode