为什么我无法使用参数View实现OnKeyListener,例如on example参数(View v,int keyCode,KeyEvent event)我被迫使用参数(< strong> DialogInterface对话框,int keyCode,KeyEvent事件)但不是我想要的视图。
答案 0 :(得分:4)
您需要删除代码顶部的import语句并将其更改为正确的语句。它们可能都有相同的但是在不同的包装中。
删除
import android.content.DialogInterface.OnKeyListener;
添加
import android.view.View.OnKeyListener;