在 Android 中檢測硬體後退按鈕

BackAndroid.addEventListener('hardwareBackPress', function() {
    if (!this.onMainScreen()) {
        this.goBack();
        return true;
    }
    return false;
});

注意:this.onMainScreen()this.goBack() 不是內建函式,你還需要實現它們。 ( https://github.com/immidi/react-native/commit/ed7e0fb31d842c63e8b8dc77ce795fac86e0f712)