不相信你读到的一切?,已弃用?或者

发布于 2024-12-23 00:00:29 字数 369 浏览 1 评论 0原文

一本书(Smith 和 Friesen 所著的“Android Recipes”)展示了这一点:

public class ContactsListListActivity extends ListActivity implements AdapterView.OnItemClickListener {

...然而,“AdapterView.OnItemClickListener”不仅在 Eclipse 中无法通过 New | 获取。班级 |接口(“添加”按钮),但是当我添加添加的“AdapterView.OnItemClickListener”时,它无法被识别(“AdapterView 无法解析为类型”)。这是否已被弃用,或者......???

A book ("Android Recipes" by Smith and Friesen) shows this:

public class ContactsListListActivity extends ListActivity implements AdapterView.OnItemClickListener {

...yet not only was "AdapterView.OnItemClickListener" not available in Eclipse via New | Class | Interfaces ("Add" button) but when I added added "AdapterView.OnItemClickListener" it wasn't recognized ("AdapterView cannot be resolved to a type"). Is this deprecated, or...???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

孤蝉 2024-12-30 00:00:29

使用 Object.OnXXXListener() 时的一个常见错误是 eclipse 不会自动导入它。

轻松手动修复它:

import android.widget.AdapterView;

您可以通过添加以下内容

AdapterView 并未弃用,并且自API 1。

A common error when working with Object.OnXXXListener() is that eclipse doesn't import it automatically.

You can easily fixed it manually by adding:

import android.widget.AdapterView;

As another note:

AdapterView is not deprecated and it is already available since API 1.

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