HomeSort by relevance Sort by last modified time
    Searched refs:mBitmapOptions (Results 1 - 2 of 2) sorted by null

  /development/samples/devbytes/graphics/BitmapAllocation/src/com/example/android/bitmapallocation/
BitmapAllocation.java 45 BitmapFactory.Options mBitmapOptions;
60 mBitmapOptions = new BitmapFactory.Options();
61 mBitmapOptions.inJustDecodeBounds = true;
62 BitmapFactory.decodeResource(getResources(), R.drawable.a, mBitmapOptions);
63 mCurrentBitmap = Bitmap.createBitmap(mBitmapOptions.outWidth,
64 mBitmapOptions.outHeight, Bitmap.Config.ARGB_8888);
65 mBitmapOptions.inJustDecodeBounds = false;
66 mBitmapOptions.inBitmap = mCurrentBitmap;
67 mBitmapOptions.inSampleSize = 1;
68 BitmapFactory.decodeResource(getResources(), R.drawable.a, mBitmapOptions);
    [all...]
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 83 milliseconds