So, I am developing a photo editing application for Android, and I'm just wondering if anyone knows which scaling algorithm (bicubic / bilinear interpolation, etc.) is used by the Bitmap.createScaledBitmap (...) method, because developer .android.com does not provide any information about this. Method documentation link
This is a bilinear interpolation with a magnification limit. If this limit is exceeded, all additional increases are performed by interpolation of the nearest neighbor.