それを防ぐために、 BitmapFactory.Options で inScaled = false を設定します
// ビットマップの読み込み
private Bitmap readBitmap(Context context, String name) {
int resID=context.getResources().getIdentifier(
name,"drawable",context.getPackageName());
BitmapFactory.Options opt = new BitmapFactory.Options();
opt.inScaled = false;
return BitmapFactory.decodeResource(
context.getResources(),resID, opt);
}