Im dragging my images into the drawable-hdpi folder in Eclipse and when I load them in the program they are 2/3rd the original size. (my 500x150 .png is being loaded as a 333x100 .png) Any advice on how I should be creating/loading images for android?
private Bitmap mGrass;
BitmapFactory.Options options = new BitmapFactory.Options();
options.inPreferredConfig = Bitmap.Config.ARGB_8888;
mGrass = BitmapFactory.decodeResource(mContext.getResources(), R.drawable.grass, options);
canvas.drawBitmap(mGrass, 0, 0, noPaint);