Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我有一个用 scala 编写的 android 应用程序,我在 eclipse 中工作(带有 scala、android sdk 和 AndroidProguardScala 的 Juno)
为什么 Eclipse 抱怨(它找不到那个静态成员)
ListView.INVALID_POSITION
而在java文件中这很好用吗?
我不介意没有自动完成功能,但是 Eclipse 抱怨并且我无法编译该项目。
因为 INVALID_POSITION 属于 android.widget.AdapterView 类。所以在 Scala 中你应该直接写:AdapterView.INVALID_POSITION
AdapterView.INVALID_POSITION