Override back button in android

前端 未结 2 1010
Happy的楠姐
Happy的楠姐 2020-12-06 19:27

I have to play a mp3 file and when click on back button on the device then automatically the song should stop. So I tried below given method. But it is not working.

2条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-06 19:38

    for Handleing All key use

    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
        if ((keyCode == KeyEvent.KEYCODE_BACK)) { //Back key pressed
           //Things to Do
            return true;
        }
        return super.onKeyDown(keyCode, event);
    }
    

提交回复
热议问题