0

解像度 1500,2100px で約 50 枚の画像を表示する viewPager をセットアップしました。画像はユーザー自身が提供しています。したがって、このコードで行う画像を縮小する必要があります。

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 のビューページャーに追加します。しかし、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 を使用してみてください。この方法では、任意の時点で 3 つのフラグメント (ページ) のみが ViewPager スタックに格納されます。

  1. 前のページ
  2. 現在のページ
  3. 次のページ

例:- ViewPager の 2 ページ目にいる場合、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 に答える