处理 formStuff
我正在处理 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你应该将代码从 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.
修复第二个错误“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;