如何阅读 Android 中的方向键按下和执行操作
我正在尝试学习Android应用程序开发。 我想使用上、下、右、左箭头键移动对象。 请任何人帮助我如何读取按下的方向键并移动对象。
i am trying to learn android app development.
i want to move an object using up,down,right,left arrow key.
please anyone helps me on how to read the pressed directional key and move the object.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
中使用它
在您的活动编辑代码
Use this in your Activity
Edited code
重写 onkeydown 函数并将键码与 KeyEvent.KEYCODE_DPAD_DOWN 等进行比较
override the onkeydown function and compare the keycode with KeyEvent.KEYCODE_DPAD_DOWN etccccc