2012-04-21 90 views
2

我有這個項目,其中我有一個大於屏幕尺寸的位圖。我想調整它以準確地適應屏幕。我沒有標題欄,而且處於全屏模式。這是我的非工作代碼:Android - 擬合位圖到屏幕

public class ScopView extends View 
{ 
    private Scop thescop; 

    public ScopView(Context context, Scop newscop) 
    { 
     super(context); 
     this.thescop = newscop; 
    } 

    @Override 
    public void onDraw(Canvas canvas) 
    { 
     Bitmap scopeBitmap; 
     BitmapFactory.Options bfOptions = new BitmapFactory.Options(); 
     bfOptions.inDither = false; 
     bfOptions.inPurgeable = true; 
     bfOptions.inInputShareable = true; 
     bfOptions.inTempStorage = new byte[32 * 1024]; 

     scopeBitmap = BitmapFactory.decodeResource(getResources(),R.drawable.scope, bfOptions); 
     scopeBitmap.createScaledBitmap(scopeBitmap, SniperActivity.Width, SniperActivity.Height, false); 
     canvas.drawBitmap(scopeBitmap, SniperActivity.scopx, SniperActivity.scopy, null); 
    } 
} 

雖然在這裏createScaledBitmap方法,我使用本身作爲源,並從用於檢索屏首窗口的高度和寬度的活動有一定變數。

回答

11

您可以使用下面的代碼來調整位圖的大小。

int h = 320; // Height in pixels 
int w = 480; // Width in pixels  
Bitmap scaled = Bitmap.createScaledBitmap(largeBitmap, h, w, true); 
1

此外,您可以使用下面的代碼片段。

public Bitmap getResizedBitmap(Bitmap bm, int newHeight, int newWidth) { 
    int width = bm.getWidth(); 
    int height = bm.getHeight(); 
    float scaleWidth = ((float) newWidth)/width; 
    float scaleHeight = ((float) newHeight)/height; 

    // Create a matrix for the manipulation 
    Matrix matrix = new Matrix(); 

    // Resize the bit map 
    matrix.postScale(scaleWidth, scaleHeight); 

    // Recreate the new Bitmap 
    Bitmap resizedBitmap = Bitmap.createBitmap(bm, 0, 0, width, height, matrix, false); 

    return resizedBitmap; 
} 
1

此代碼是幫助你試試這個

int REQ_WIDTH = 0; 
int REQ_HEIGHT = 0; 
REQ_WIDTH =imageView.getWidth(); 
vREQ_HEIGHT =imageView.getHeight(); 
mImageView.setImageBitmap(Bitmap.createScaledBitmap(BitmapFactory.decodeFile(imageURI, options), REQ_HEIGHT, REQ_WIDTH, true));