处理 formStuff

发布于 2024-10-12 13:30:06 字数 517 浏览 1 评论 0原文

我正在处理 formStuff 示例,但添加 EditText 时遇到错误。

这是我收到错误一的行:

edittext.setOnKeyListener(new OnKeyListener() {

这是错误:

该行有多个标记 - OnKeyListener 无法解析为类型 - setOnKeyListener(View.OnKeyListener)方法 类型 View 不适用于 论据(新的 OnKeyListener(){})

http://developer.android.com/resources /tutorials/views/hello-formstuff.html

I was working on the formStuff samples and I am getting a error adding the EditText.

This is the line I am getting a error one:

edittext.setOnKeyListener(new OnKeyListener() {

This is the error:

Multiple markers at this line
- OnKeyListener cannot be resolved to a type
- The method setOnKeyListener(View.OnKeyListener)
in the type View is not applicable for
the arguments (new
OnKeyListener(){})

http://developer.android.com/resources/tutorials/views/hello-formstuff.html

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

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

发布评论

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

评论(2

深空失忆 2024-10-19 13:30:06

我认为你应该将代码从 OnKeyListener 更改为 View.OnKeyListener...或者更改为你想要监听操作的特定“视图”...

来自官方 Android 文档,以下是 setOnKeyListener 函数签名:

void setOnKeyListener(View .OnKeyListener l)
在此视图中按下按键时注册要调用的回调。

I think you should change your code to View.OnKeyListener from OnKeyListener...or to a particular "View" you want to listen on to the action....

from official Android Documentation following is a setOnKeyListener function signature:

void setOnKeyListener(View.OnKeyListener l)
Register a callback to be invoked when a key is pressed in this view.

捂风挽笑 2024-10-19 13:30:06

修复第二个错误“OnKeyListener 无法解析为类型”,第一个错误将消失。

你需要
导入 android.view.View.OnKeyListener;

Fix the second error "OnKeyListener cannot be resolved to a type" and the first error will go away.

You need to
import android.view.View.OnKeyListener;

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