如何防止 android 中的硬件后退按钮关闭 Ionic 3 应用程序?

How to prevent Ionic 3 app close by hardware back button in android?

如何在 android 中防止通过硬件后退按钮关闭 Ionic 3 应用程序? 如果用户点击后退按钮,我不想关闭应用程序。应用程序是一个单页应用程序,我没有要弹出的页面。我想在按下后退按钮时提醒用户是否要退出应用程序。

使用硬件后退按钮API:

import { Platform } from '@ionic/angular';

...

constructor(private platform: Platform) {
  this.platform.backButton.subscribeWithPriority(10, () => {
    console.log('Handler was called!');
  });
}

Hardware API Documentation