Detect home button press in android

后端 未结 17 2453
抹茶落季
抹茶落季 2020-11-22 08:22

This has been driving me nuts for a while now.

Is there any way of reliably detecting if the home button has been pressed in an android application?

Failing

17条回答
  •  没有蜡笔的小新
    2020-11-22 09:22

    This works for me. You can override onUserLeaveHint method https://www.tutorialspoint.com/detect-home-button-press-in-android

    @Override
        protected void onUserLeaveHint() {
            //
            super.onUserLeaveHint();
        }
    

提交回复
热议问题