我需要在我的应用程序中添加onKeyUp()
/onKeyDown()
事件处理,我没有在其中创建Activity
and main View
。(OuyaController
开始使用 Marmalade SDK 应用程序)。
onGenericMotion()
看起来很简单(view.setOnGenericMotionListener()
),但是我很困惑view.setOnKeyListener()
,因为它作为参数的接口只有android.View.OnKeyListener
一个onKey()
方法,而不是onKeyUp()
/ onKeyDown()
。
显然,view.KeyEvent.Callback
有这个接口,它Activity
和View
实现 - 什么类有这个接口,我怎样才能将它的功能添加到View
程序上?