在android中动态调整实际图像的大小如何实现
我正在研究Android应用程序,在此应用程序图像保存在字节代码中,在此字节代码中转换
原始图像中的图像,动态调整为较小的图像和清晰度图像,如何在Android中实现,
请转发一些有价值的解决方案,提前致谢...
i am worked on android application in this application image saved in byte code,in this byte code convert image
in this original image resize in smaller image and clarity image dynamically how can implemented in android
please forward some valuable solution thanks in advance...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将图像转换为位图并使用位图的缩放位图方法来指定缩小/放大图像的大小,使用 ImageView.setBitmap 方法将此图像位图设置为您的 Ui 元素。
Convert Image to Bitmap and use scaled bitmap method of bitmap to specifying size of your scaled down/up image, use ImageView.setBitmap method to set this image bitmap to your Ui element.