ReactNative 监听Android的物理返回事件!

390 阅读1分钟
import { Platform, BackHandler } from "react-native";

 componentWillMount() {
    if (Platform.OS === "android") {
      BackHandler.addEventListener("back", this.addListtenRequues);
    }
  }

  componentWillUnmount() {
    if (Platform.OS === "android") {
      BackHandler.removeEventListener("back");
    }
  }