AppLifecycleState 会在整个应用程序生命周期或我使用它的页面中处于活动状态吗

发布于 2025-01-11 14:41:26 字数 900 浏览 0 评论 0原文


  @override
  void initState() {
    super.initState();
    WidgetsBinding.instance!.addObserver(this);
  }
  
  @override
  void didChangeAppLifecycleState(AppLifecycleState state) {
    if (state == AppLifecycleState.resumed) {
      debugPrint("AppLifecycleState.resumed");
    } else if (state == AppLifecycleState.paused) {
      debugPrint("AppLifecycleState.paused");
    } else if (state == AppLifecycleState.detached) {
      debugPrint("AppLifecycleState.detached");
    } else if (state == AppLifecycleState.inactive) {
      debugPrint("AppLifecycleState.inactive");
    }
  }

  @override
  void dispose() {
    WidgetsBinding.instance!.removeObserver(this);
    super.dispose();
  }

  @override
  Widget build(BuildContext context) => Scaffold();
}

这是上面的演示页面,我想知道 didChangeAppLifecycleState() 方法是否会在我更改应用程序状态时打印,或者仅在我从演示页更改应用程序状态时打印


  @override
  void initState() {
    super.initState();
    WidgetsBinding.instance!.addObserver(this);
  }
  
  @override
  void didChangeAppLifecycleState(AppLifecycleState state) {
    if (state == AppLifecycleState.resumed) {
      debugPrint("AppLifecycleState.resumed");
    } else if (state == AppLifecycleState.paused) {
      debugPrint("AppLifecycleState.paused");
    } else if (state == AppLifecycleState.detached) {
      debugPrint("AppLifecycleState.detached");
    } else if (state == AppLifecycleState.inactive) {
      debugPrint("AppLifecycleState.inactive");
    }
  }

  @override
  void dispose() {
    WidgetsBinding.instance!.removeObserver(this);
    super.dispose();
  }

  @override
  Widget build(BuildContext context) => Scaffold();
}

this is a demoPage above,I wonder if the didChangeAppLifecycleState() method will print on any time I change app state,or just print when I change app state from DemoPage

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文