Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 在 Android 应用程序中更改位图分辨率
如何降低android中图像或位图的DPI(水平分辨率和垂直分辨率)?
“降低 DPI”是指缩放图像吗?如果是这样,请尝试此代码
Bitmap.createScaledBitmap(sourceBitmap, dstWidth, dstHeight, false);