首页 > 解决方案 > React Native AppState 在带有模糊事件的 android 中不起作用

问题描述

当我在 android 上的下拉菜单中没有出现来自 AppState 的模糊和焦点事件,并且我找不到任何用例来触发它。有人知道如何解决这个问题以及为什么它不起作用?我在世博在线编辑器中尝试过模拟器,但同样的问题仍然存在。反应原生版本 0.63.3。这是我的代码:

  const onBlur = () => {
    console.log('blur is working')
  }

  useEffect(() => {
    if (Platform.OS === 'android') {
      AppState.addEventListener('blur', onBlur)
    }
    return () => {
      if (Platform.OS === 'android') {
        AppState.removeEventListener('blur', onBlur)
      }
    }
  }, [])

标签: androidreact-native

解决方案


推荐阅读