ArrayAdapter.getPosition(item) 返回什么?

发布于 2024-11-24 17:35:25 字数 62 浏览 1 评论 0原文

我看到文档说这个方法返回给定项目的位置,但是如果 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏末 2024-12-01 17:35:25

查看源代码后,我发现 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文