Back pressed events with system alert window

后端 未结 10 1531
南笙
南笙 2021-01-03 03:21

I need to dismiss system alert window on back pressed and home button event.I have tried with onKeyEvent but in vain. As we can\'t cap

10条回答
  •  旧巷少年郎
    2021-01-03 04:04

    You need to overwrite the onBackPressed method.

    @Override
    public void onBackPressed() {
    
        super.onBackPressed(); // remove this if u want to handle this event
    }
    

提交回复
热议问题