React-native应用程序不会关闭后退按钮

时间:2017-07-19 12:59:59

标签: android react-native back-button react-native-android expo

按下后退按钮时,我的react-native应用程序(在Android上)不会关闭。它关闭并进入后台并在那里运行(动画)。

我也试过这个,但结果相同:

public async void Pair()
{
    if (!DeviceInformation.Pairing.IsPaired)
    {
        Logger.Info($"{DeviceInformation.Name} Try Pairing");
        DeviceInformation.Pairing.Custom.PairingRequested += CustomOnPairingRequested;

        var result = await DeviceInformation.Pairing.Custom.PairAsync(
              DevicePairingKinds.ConfirmOnly, DevicePairingProtectionLevel.None);
        DeviceInformation.Pairing.Custom.PairingRequested -= CustomOnPairingRequested;

        Logger.Info($"{result.Status}");
    }

}


private void CustomOnPairingRequested(
      DeviceInformationCustomPairing sender, 
      DevicePairingRequestedEventArgs args)
{
    Logger.Info("Test");
    args.Accept();
}

当我按回或主页按钮时,我希望它完全关闭。

P.S。我正在使用Expo进行开发和部署,并通过它启动应用程序。

1 个答案:

答案 0 :(得分:1)

z