gpt4 book ai didi

android - 如何在 Android 中调整图像大小?

转载 作者:IT老高 更新时间:2023-10-28 13:08:25 24 4
gpt4 key购买 nike

我正在创建一个应用程序并想设置一个画廊 View 。我不希望画廊 View 中的图像是全尺寸的。如何在 Android 中调整图像大小?

最佳答案

试试:

Bitmap yourBitmap;
Bitmap resized = Bitmap.createScaledBitmap(yourBitmap, newWidth, newHeight, true);

或:

resized = Bitmap.createScaledBitmap(yourBitmap,(int)(yourBitmap.getWidth()*0.8), (int)(yourBitmap.getHeight()*0.8), true);

关于android - 如何在 Android 中调整图像大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10413659/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com