Android back button does not work

后端 未结 5 1144
星月不相逢
星月不相逢 2021-02-06 14:56

I am using cocos2dx to make a small game and in the activity of my game i give the following functions to handle back button.

@Override
 public boolean onKeyDown         


        
5条回答
  •  被撕碎了的回忆
    2021-02-06 15:39

    Just your apps implements for override method for onKeyDown,

    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
        // TODO Auto-generated method stub
        if (keyCode == KeyEvent.KEYCODE_BACK) {
            // Here to implements for your code.
            Log.d(TAG, "KEYCODE_BACK");
        }
        return super.onKeyDown(keyCode, event);
    }
    

提交回复
热议问题