Here is the code line where I am getting the error:
ImagePagerAdapter adapter = new ImagePagerAdapter(((Activity)getContext()).getFragmentManager());
Error is not coming at the runTime, It comes in the project. when I take the cursor on error and for the recommended solution. I click and the change happened in the
ImagePagerAdater(android.app.FragmentManager fragmentManager)
Constructor and super gives error after the change and ImagePagerAdapter class is below:
ImagePagerAdapter.java
public class ImagePagerAdapter extends FragmentStatePagerAdapter {
public ImagePagerAdapter(FragmentManager fragmentManager){
super(fragmentManager);
}
@Override
...
}
study link from where I start this