我在ViewPager中加载图片时遇到问题。图像在右侧和左侧加载5px间隙。这是我的代码:
@Override
public Object instantiateItem(ViewGroup container, int position) {
ImageView imageView = new ImageView(mContext);
imageView.setImageResource(PoemActivity.mPoems[position]);
container.addView(imageView);
return imageView;
}
以下是Hari提出的我的xml文件。
<android.support.v4.view.ViewPager
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/viewPager"
android:layout_width="match_parent"
android:layout_height="match_parent" />