如何在 cocos2D android 中显示本机警报?
我正在 cocos2D android 中创建一个游戏。我需要在游戏结束时收到警报。 我可以在 cocos2D android 中执行此操作吗?
I am creating a game in cocos2D android. I need to have an alert at the end of my game.
Can I do this in cocos2D android?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您应该使用 MessageJni.cpp 类(在 /cocos2dx/platform/android/jni 中)中的 showMessageBoxJNI(const char * pszMsg, const char * pszTitle) 方法通过 JNI 来执行此操作。只需在要添加警报的类中导入 MessageJni.cpp 即可:
希望这会有所帮助。
I think you should do this with JNI using the showMessageBoxJNI(const char * pszMsg, const char * pszTitle) method in the MessageJni.cpp class (in /cocos2dx/platform/android/jni). Simply import MessageJni.cpp in the class where you want to add an alert:
Hope this helps.
为此使用菜单。我认为这是更好的选择。执行此操作时,您甚至可以单击游戏结束。当您的游戏结束时,编写下面的代码
并单击该菜单,然后编写下面的函数。它将被称为 onclick。
Use menu for that. I think it is better option. on doing this, you can put click even to game over.when your game s over write below code
and onclick of that menu this write below function. it will be called onclick.