5

重複の可能性:
java.lang.OutOfMemoryError: ビットマップ サイズが VM の予算を超えています - Android

ViewPager を使用して、リソース フォルダーから一連の画像を表示しました。画像のサイズが小さい場合は、すべて正常に動作します。

しかし、アプリに必要な高解像度画像に置き換えると、次のエラーが発生しました:

java.lang.OutOfMemoryError: ビットマップ サイズが VM の予算を超えています

注1:

コードにはテスト用に 5 つの画像が含まれていますが、最終的には約 30 の高解像度画像が含まれます。

注2:

なぜこれが起こるのだろうか、私はアンドロイドに不慣れで、viewpager クラスを初めて使用する前に、30 以上の高解像度画像を含む別のアプリでギャラリー クラスを使用し、例外は発生しませんでした。

アドバイスをいただければ幸いです、どうもありがとう

私のコード:

logcat スタック:

   FATAL EXCEPTION: main
    java.lang.OutOfMemoryError: bitmap size exceeds VM budget
at android.graphics.BitmapFactory.nativeDecodeAsset(Native Method)
at android.graphics.BitmapFactory.decodeStream(BitmapFactory.java:563)
at android.graphics.BitmapFactory.decodeResourceStream(BitmapFactory.java:439)
at android.graphics.BitmapFactory.decodeResource(BitmapFactory.java:462)
at android.graphics.BitmapFactory.decodeResource(BitmapFactory.java:488)
at com.test.demo.MyPagerAdapter.<init>(MyPagerAdapter.java:42)
at com.test.demo.MainActivity.onCreate(MainActivity.java:15)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1615)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1667)
at android.app.ActivityThread.access$1500(ActivityThread.java:117)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:935)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:123)
at android.app.ActivityThread.main(ActivityThread.java:3687)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:507)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:842)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:600)
at dalvik.system.NativeStart.main(Native Method)

主な活動

 public class MainActivity extends Activity {  
  private ViewPager mMyPager;
  private MyPagerAdapter mMyPagerAdapter;

public void onCreate(Bundle savedInstanceState) {   
  super.onCreate(savedInstanceState);   
    setContentView(R.layout.main);   

  mMyPager = (ViewPager) findViewById(R.id.mypages);           
  mMyPagerAdapter = new MyPagerAdapter(this);   
  mMyPager.setAdapter(mMyPagerAdapter);  }} 

MyPagerAdapter

  public class MyPagerAdapter extends PagerAdapter {   

    private ArrayList<ImageView> mViewsList;   
private Context mContext = null;   

public MyPagerAdapter(Context context) {   
    mContext = context;   
    mViewsList = new ArrayList<ImageView>();   

    Resources resource = mContext.getResources();   
   Bitmap bMap1 = BitmapFactory.decodeResource(resource,   
            R.drawable.one);   
   ImageView image1 = new ImageView(mContext);   
    image1.setImageBitmap(bMap1);      
    mViewsList.add(image1);   

    Bitmap bMap2 = BitmapFactory.decodeResource(resource,   
            R.drawable.two );   
    ImageView image2 = new ImageView(mContext);   
    image2.setImageBitmap(bMap2);      
    mViewsList.add(image2);   

    Bitmap bMap3 = BitmapFactory.decodeResource(resource,   
            R.drawable.three);   
   ImageView image3 = new ImageView(mContext);   
    image3.setImageBitmap(bMap3);      
    mViewsList.add(image3); 

    Bitmap bMap4 = BitmapFactory.decodeResource(resource,   
            R.drawable.four);   
   ImageView image4 = new ImageView(mContext);   
    image4.setImageBitmap(bMap4);      
    mViewsList.add(image4); 

    Bitmap bMap5 = BitmapFactory.decodeResource(resource,   
            R.drawable.five);   
   ImageView image5 = new ImageView(mContext);   
    image5.setImageBitmap(bMap5);      
    mViewsList.add(image5); 
               }      

@Override  
public int getCount() {   
    return mViewsList.size();   
                        }   

@Override  
public Object instantiateItem(View view, int position) {   
    View myView = mViewsList.get(position);   
    ((ViewPager) view).addView(myView);   
    return myView;   
              }   

@Override  
public boolean isViewFromObject(View view, Object object) {   
    return view == object;   
                  }   

@Override  
public void destroyItem(View view, int arg1, Object object) {   
    ((ViewPager) view).removeView((ImageView) object);   
                }   
                   }  
4

3 に答える 3

4

あなたのアダプターは、あなたが持っている方法で書かれるべきではありません。instantiateItem メソッドでのみビットマップをデコードする必要があります。

private Context context;
private ArrayList<Integer> mResourceList;
private Resources resource;  

public MyPagerAdapter(Context context) { 
    this.context = context;

    resource = context.getResources();

    mResourceList = new ArrayList<Integer>();     
    mResourceList.add(R.drawable.one);
    mResourceList.add(R.drawable.two);
    mResourceList.add(R.drawable.three);
    mResourceList.add(R.drawable.four);
    mResourceList.add(R.drawable.five);
}

@Override  
public Object instantiateItem(View view, int position) {   
        ImageView myView = new ImageView(context);

        Bitmap bitmap = BitmapFactory.decodeResource(resource, mResourceList.get(position) );
        myView.setImageBitmap(bitmap);

        ((ViewPager) view).addView(myView);   
        return myView;   
}   

ここで、ビットマップが最大サイズ値 (2048px x 2048px) を超えていないことを確認する必要があります。

その場合は、画像を縮小する必要があります。これを行うには、BitmapFactory.Options オブジェクトを BitmapFactory.decodeResouce パラメーターに追加し、inSampleSize を 2 のべき乗で設定します。2 で設定すると、50%、4 ~ 25% などにサンプリングされます。

BitmapFactory.Options options = new BitmapFactory.Options()
options.inSampleSize = 2

Bitmap bitmap = BitmapFactory.decodeResource(resource, mResouceList.get(position), options );

これが役に立ったことを願っています!

于 2012-11-24T05:24:53.317 に答える
0

ビットマップのサイズが非常に大きいため、ロードする前にビットマップをスケーリングしてください。ビットマップをスケーリングするための構文

Bitmap bitmapName= Bitmap.createScaledBitmap(sourceBitmap, width, height,
                        true);

幅と高さは、画像のサイズです。

于 2012-11-24T04:15:11.790 に答える
0

あなたの問題は、実際に必要になる前に一連のビットマップを作成していることです。

メソッド内instantiateViewで を作成しImageView、ビットマップをロードしてそこに設定します。必要に応じて、ArrayList を使用してリソースの int を保持し、必要に応じてロードするイメージを認識します。このように、ガベージ コレクションは必要に応じてビットマップを削除し、メモリの問題を引き起こすことはありません。

于 2012-11-24T04:25:10.827 に答える