[android] Added clearing of page change listeners before setting the new one for dot pager

This commit is contained in:
Александр Зацепин 2020-04-15 12:42:13 +03:00 committed by yoksnod
parent 30277d4b98
commit 18bceed16a

View file

@ -1,16 +1,16 @@
package com.mapswithme.maps.widget;
import android.content.Context;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.LinearLayout;
import androidx.annotation.DrawableRes;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.annotation.StringRes;
import androidx.viewpager.widget.PagerAdapter;
import androidx.viewpager.widget.ViewPager;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.LinearLayout;
import com.mapswithme.maps.R;
import com.mapswithme.util.ThemeUtils;
import com.mapswithme.util.UiUtils;
@ -80,6 +80,7 @@ public class DotPager implements ViewPager.OnPageChangeListener
private void configurePager()
{
mPager.setAdapter(mAdapter);
mPager.clearOnPageChangeListeners();
mPager.addOnPageChangeListener(this);
}