[Solved] Implementing ViewPager for displaying the images that comes from server

First you need a custom viewpager adapter : Picasso is a great library to load images from. I will give you a link in case you need further help understanding it : http://square.github.io/picasso/ public class ViewPagerAdapter extends PagerAdapter { Context c; private List<String> _imagePaths; private LayoutInflater inflater; public ViewPagerAdapter(Context c, List<String> imagePaths) { this._imagePaths = … Read more