美文网首页
ReactNative 监听Android的物理返回事件!

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

作者: AlwaysLuckyMa | 来源:发表于2020-12-22 08:29 被阅读0次
    import { Platform, BackHandler } from "react-native";
    
     componentWillMount() {
        if (Platform.OS === "android") {
          BackHandler.addEventListener("back", this.addListtenRequues);
        }
      }
    
      componentWillUnmount() {
        if (Platform.OS === "android") {
          BackHandler.removeEventListener("back");
        }
      }
    
    

    相关文章

      网友评论

          本文标题:ReactNative 监听Android的物理返回事件!

          本文链接:https://www.haomeiwen.com/subject/sqrrnktx.html