我到处寻找,找不到答案。如何检测用户何时尝试关闭我的React Native应用程序(如在进程正在运行,并且他们手动管理他们的应用程序并强制退出它)。我希望在发生这种情况时添加注销功能,但无法找到检测它的方法。 AppState
似乎只检测应用何时进入和退出后台。
答案 0 :(得分:15)
看起来您可以检测到之前的状态并将其与下一个状态进行比较。我无法检测到应用程序正在关闭与进入后台,我可以在线查找,但您可以检测到它是inactive
(已关闭)还是background
。
import React, {Component} from 'react'
import {AppState, Text} from 'react-native'
class AppStateExample extends Component {
state = {
appState: AppState.currentState
}
componentDidMount() {
AppState.addEventListener('change', this._handleAppStateChange);
}
componentWillUnmount() {
AppState.removeEventListener('change', this._handleAppStateChange);
}
_handleAppStateChange = (nextAppState) => {
if (this.state.appState.match(/inactive|background/) && nextAppState === 'active') {
console.log('App has come to the foreground!')
}
this.setState({appState: nextAppState});
}
render() {
return (
<Text>Current state is: {this.state.appState}</Text>
);
}
}
答案 1 :(得分:1)
刚刚遇到了同样的问题。被接受的答案实际上并没有按照 OP 中的要求执行。
一个hacky 的解决方案是在应用程序打开的第一个屏幕上设置一个标志,当应用程序刚刚打开后台时不显示该屏幕。
不是超级优雅,我无法显示示例代码,但它解决了我的特定问题。
答案 2 :(得分:0)
作为一种简单的方法,我们可以在 root组件中使用componentWillUnmount()来检测应用程序是否关闭。因为仅当应用程序关闭时才根组件卸载。 :)