我需要用 5 张幻灯片在 Android 中创建 ViewPager,每张都由图像和文本组成。我有一个包含图像资源的数组:
private static final int[] images = {R.drawable.tutorial_step_01, R.drawable.tutorial_step_02, R.drawable.tutorial_step_03, R.drawable.tutorial_step_04, R.drawable.tutorial_step_05, R.drawable.tutorial_step_06};
然后我创建适配器:
@Override
public Object instantiateItem(ViewGroup container, int position) {
LinearLayout tv = (LinearLayout) inflater.inflate(R.layout.tut_slide, null);
TextView title = (TextView) tv.findViewById(R.id.tut_title);
title.setText(getResources().getText(titles[position]));
TextView content = (TextView) tv.findViewById(R.id.tut_content);
ImageView image = (ImageView) tv.findViewById(R.id.tut_image);
slide_image = BitmapFactory.decodeResource(getResources(), images[position]);
image.setImageBitmap(slide_image);
content.setText(getResources().getText(contents[position]));
((ViewPager) container).addView(tv, 0);
return tv;
}
@Override
public void destroyItem(ViewGroup container, int position, Object object) {
((ViewPager) container).removeView((LinearLayout) object);
//
}
麻烦的是,在我选择另一个页面后,android 不想收集图像。因此,经过 10-15 次更改后,它会出现 OutOfMemory 异常。然后我添加到初始化行
if (slide_image!= null) {
slide_image.recycle();
System.gc();
}
而且效果很好!但除了一件事:我有黑屏而不是第一张图像,经过几次翻转后被真实图像取代。所以我不知道如何处理这种内存泄漏