如何确定 Fragment 何时在 ViewPager 中可见

How to determine when Fragment becomes visible in ViewPager(如何确定 Fragment 何时在 ViewPager 中可见)
本文介绍了如何确定 Fragment 何时在 ViewPager 中可见的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

问题:ViewPager 中的片段 onResume() 在片段实际可见之前被触发.

Problem: Fragment onResume() in ViewPager is fired before the fragment becomes actually visible.

例如,我有 2 个片段,分别是 ViewPagerFragmentPagerAdapter.第二个片段仅适用于授权用户,我需要在片段可见时要求用户登录(使用警报对话框).

For example, I have 2 fragments with ViewPager and FragmentPagerAdapter. The second fragment is only available for authorized users and I need to ask the user to log in when the fragment becomes visible (using an alert dialog).

但是 ViewPager 在第一个片段可见时创建第二个片段,以便缓存第二个片段并在用户开始滑动时使其可见.

BUT the ViewPager creates the second fragment when the first is visible in order to cache the second fragment and makes it visible when the user starts swiping.

所以 onResume() 事件早在第二个片段变得可见之前就在第二个片段中触发了.这就是为什么我试图找到一个在第二个片段可见时触发的事件,以便在适当的时候显示一个对话框.

So the onResume() event is fired in the second fragment long before it becomes visible. That's why I'm trying to find an event which fires when the second fragment becomes visible to show a dialog at the appropriate moment.

如何做到这一点?

推荐答案

如何确定 Fragment 何时在 ViewPager 中可见

How to determine when Fragment becomes visible in ViewPager

您可以通过在 Fragment 中覆盖 setUserVisibleHint 来执行以下操作:

You can do the following by overriding setUserVisibleHint in your Fragment:

public class MyFragment extends Fragment {
    @Override
    public void setUserVisibleHint(boolean isVisibleToUser) {
        super.setUserVisibleHint(isVisibleToUser);
        if (isVisibleToUser) {
        }
        else {
        }
    }
}

这篇关于如何确定 Fragment 何时在 ViewPager 中可见的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)
Crash on Google Play Pre-Launch Report: java.lang.NoSuchMethodError(Google Play发布前崩溃报告:java.lang.NoSuchMethodError)