You need to use view.setImageResource instead of view.setBackgroundResource, the properties you apply are not getting set on the "Background"
@Override
public Object instantiateItem(View container, int position) {
ImageView view = new ImageView(activity);
view.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.MATCH_PARENT));
view.setAdjustViewBounds(true);
view.setScaleType(ScaleType.FIT_CENTER);
view.setImageResource(imageArray[position]);
((ViewPager) container).addView(view, 0);
return view;
}