0

我已经设置了一个 viewPager,它应该显示大约 50 张分辨率为 1500,2100 像素的图像。图片由用户自行提供。所以我需要缩小我用这段代码做的图像:

WindowManager wm = (WindowManager) ctx.getSystemService(Context.WINDOW_SERVICE);
    Display display = wm.getDefaultDisplay();
    Point size = new Point();
    display.getSize(size);
    int width = size.x;
    int height = size.y;
    //imageFile is a string to the image location.
    Bitmap bm = BitmapFactory.decodeFile(imagefile);
    Bitmap scaledBitmap = Bitmap.createScaledBitmap(bm, width, height, true);

当图像被缩小时,我将它添加到 arrayList 中的 viewpager,它只适用于少数图像。但是现在我需要加载 50 张图片,我该怎么做呢?即使在缩小图像之后,我也会遇到 outOfMemory 错误。

使用此代码添加图像(到 ViewPager):

    @Override
public Object instantiateItem(ViewGroup container, int position) {
    ImageView imageView = new ImageView(context);
    //int padding = context.getResources().getDimensionPixelSize(R.dimen.padding_medium);
    //imageView.setPadding(padding, padding, padding, padding);
    imageView.setScaleType(ImageView.ScaleType.CENTER_CROP);
    //imageView.setImageResource(pages.get(position));
    imageView.setImageBitmap(pages.get(position));
    ((ViewPager) container).addView(imageView, 0);
    return imageView;
}

我希望能得到一个好的建议。我在想自己只加载几张图片并动态添加它们,但我不知道一旦我不再需要它们时如何销毁加载的图片。我愿意接受任何建议!

4

2 回答 2

2

尝试在 ViewPager 中使用 Fragments 和 FragmentPagerAdapter。在此方法中,在任何给定时间点,ViewPager 堆栈中仅存储 3 个片段(页面)。

  1. 上一页
  2. 当前页面
  3. 下一页

例如:- 如果您位于 ViewPager 的第二页,则 ViewPager 堆栈包含 Page1、Page2 和 Page3。如果从第 2 页滑到第 3 页,则第 4 页被加载到堆栈中,第 1 页从堆栈中删除。

在您的应用程序中使用此功能将节省大量内存,因为在任何给定时间内存中只会出现 3 张图像。

这已经在开发者页面 http://developer.android.com/training/displaying-bitmaps/display-bitmap.html中得到了很好的解释

这种实现的一个例子 -

public class MainActivity extends FragmentActivity {


SectionsPagerAdapter mSectionsPagerAdapter;


ViewPager mViewPager;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    // Create the adapter that will return a fragment for each of the three
    // primary sections of the app.
    mSectionsPagerAdapter = new SectionsPagerAdapter(
            getSupportFragmentManager());

    // Set up the ViewPager with the sections adapter.
    mViewPager = (ViewPager) findViewById(R.id.pager);
    mViewPager.setAdapter(mSectionsPagerAdapter);

}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

/**
 * A {@link FragmentPagerAdapter} that returns a fragment corresponding to
 * one of the sections/tabs/pages.
 */
public class SectionsPagerAdapter extends FragmentPagerAdapter {

    public SectionsPagerAdapter(FragmentManager fm) {
        super(fm);
    }

    @Override
    public Fragment getItem(int position) {
        // getItem is called to instantiate the fragment for the given page.
        // Return a DummySectionFragment (defined as a static inner class
        // below) with the page number as its lone argument.
        Fragment fragment = new DummySectionFragment();
        Bundle args = new Bundle();
        args.putInt(DummySectionFragment.ARG_SECTION_NUMBER, position + 1);
        fragment.setArguments(args);
        return fragment;
    }

    @Override
    public int getCount() {
        // Show 3 total pages.
        return 3;
    }

    @Override
    public CharSequence getPageTitle(int position) {
        Locale l = Locale.getDefault();
        switch (position) {
        case 0:
            return getString(R.string.title_section1).toUpperCase(l);
        case 1:
            return getString(R.string.title_section2).toUpperCase(l);
        case 2:
            return getString(R.string.title_section3).toUpperCase(l);
        }
        return null;
    }
}

/**
 * A dummy fragment representing a section of the app, but that simply
 * displays dummy text.
 */
public static class DummySectionFragment extends Fragment {
    /**
     * The fragment argument representing the section number for this
     * fragment.
     */
    public static final String ARG_SECTION_NUMBER = "section_number";

    public DummySectionFragment() {
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        View rootView = inflater.inflate(R.layout.fragment_main_dummy,
                container, false);
        TextView dummyTextView = (TextView) rootView
                .findViewById(R.id.section_label);
        dummyTextView.setText(Integer.toString(getArguments().getInt(
                ARG_SECTION_NUMBER)));
        return rootView;
    }
}

您必须将此代码与您的代码集成。如果您需要任何进一步的帮助,请告诉我!:)

于 2013-08-19T12:30:35.073 回答
0

利用BitmapFactory.Options将缩小版本的图像加载到内存中。

你可以参考这个BitmapFactory.Options

利用inSampleSize,将其值设置为大于 1。

于 2013-08-19T11:54:09.260 回答