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.
在我的应用程序中,我有 imageUri(来自图库照片),我想缩放照片以在 imageView 中显示用户。我应该在 asyncTask 中缩放图像吗?
额外:如果您有任何关于缩放 jpg 简单快捷方式的信息?
这取决于您的用例和应用程序的结构。通常,不应在 UI 线程上从文件中解码位图。缩放现有位图并不像从文件中解码它那样繁重,所以如果它只有一个图像,我猜你可以在 UI 线程上进行。