Cocos2dx技术(四)——Android上运行Cocos的若干问题

Cocos2dx技术(四)——Android上运行Cocos的若干问题,第1张

概述1、为什么在Activity的onKeyDown方法中写Cocos的back按钮响应代码是无效的? 下面是官方AIP: public boolean onKeyDown (int keyCode, KeyEvent event) Since: API Level 1 Called when a key was pressed down and not handled by any of the v

1、为什么在Activity的onKeyDown方法中写Cocos的back按钮响应代码是无效的?

下面是官方AIP:

public boolean onKeyDown (int keyCode,KeyEvent event)
Since: API Level 1
Called when a key was pressed down and not handled by any of the vIEws insIDe of the activity. So,for example,key presses while the cursor is insIDe a TextVIEw will not trigger the event (unless it is a navigation to another object) because TextVIEw handles its own key presses.
If the focused vIEw dIDn't want this event,this method is called.

可见onKeyDown 方法执行的前提是当前拥有焦点的VIEw没有“吞并”这个点击事件。在Activity的onKeyDown方法中写Cocos的back按钮响应代码是无效的原因正是游戏界面吞并了这个事件。

既然Cocos有意吞并这个事件,那么Cocos肯定有处理这个事件的机制。

Cocos实现对back键(菜单键也是如此)的响应实现方式如下:

1、在需要响应Scene的h文件中添加虚函数如下:
virtual voID onkeyreleased(EventKeyboard::KeyCode keyCode,Event* event);
2、cpp中实现这个函数例如:

voID TestScene::onkeyreleased(EventKeyboard::KeyCode keyCode,Event* event)
{
cocos2d::log("----------->%d",keyCode);
if (keyCode == EventKeyboard::KeyCode::KEY_BACK)//back键

{

//...

}
}

3、init()函数中加入:

this->setKeypadEnabled(true);

总结

以上是内存溢出为你收集整理的Cocos2dx技术(四)——Android上运行Cocos的若干问题全部内容,希望文章能够帮你解决Cocos2dx技术(四)——Android上运行Cocos的若干问题所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1055504.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存