How To Know When Fragment Actually Visible In Viewpager
Solution 1:
as per @Matt's answer setUserVisibleHint
is deprecated
so here is alternative way for this.
@OverridepublicvoidsetMenuVisibility(boolean isvisible) {
super.setMenuVisibility(isvisible);
if (isvisible){
Log.d("Viewpager", "fragment is visible ");
}else {
Log.d("Viewpager", "fragment is not visible ");
}
}
Solution 2:
Of course. Assuming that viewPager
is your instance of the ViewPager
, use: viewPager.getCurrentItem()
.
Within your Fragment
you can check if its instance is visible to the user like so:
@OverridepublicvoidsetUserVisibleHint(boolean visible) {
super.setUserVisibleHint(visible);
if (visible) {
Log.i("Tag", "Reload fragment");
}
}
Always make sure that you search for answers throughly before asking your question. For instance, the first place you should check would be: https://developer.android.com/reference/android/support/v4/view/ViewPager.html
Solution 3:
You can use viewPager.getCurrrentItem() to get the currently selected index, and from that you should be able to extrapolate which fragment is shown. However what you probably want is to use addOnPageChangeListener() to add an OnPageChangeListener. This will let you keep track of what page is selected, as it's selected by implementing the onPageSelected(int selected) method.
Solution 4:
Did you try the isVisible method in the fragment?
Post a Comment for "How To Know When Fragment Actually Visible In Viewpager"