Попробуйте этот код ...
public Bitmap getResizeBitmap(Bitmap bitmap, int newHeight, int newWidth)
{
int width = bitmap.getWidth();
int height = bitmap.getHeight();
float scaleWidth = ((float)newWidth)/width;
float scaleHeight = ((float)newHeight)/height;
Matrix matrix = new Matrix();
matrix.postScale(scaleWidth, scaleHeight);
Bitmap resizeBitmap = Bitmap.createBitmap(bm, 0, 0, width, height, matrix, true);
return resizeBitmap;
}
тогда в методе onCreate используйте это ...
myImage = Bitmap.createBitmap(BitmapFactory
.decodeResource(this.getResources(), R.drawable.mypic));
myImage.setDensity(1);
imageview = (ImageView)findViewById(R.id.imageViewId);
imageview.setImageBitmap(getResizeBitmap(myImage,195, 480));//as per as your requirement