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.
所以我学会了如何使用 glide 从服务器加载图像并转换它们,它工作得很好。
但是现在,我想知道在将其设置为 src 之前,如何对已设置为 ImageView 的图像使用相同的转换?
您可以使用与来自服务器的图像相同的方式使用它,Glide.with(context).load(uri).transform(new Transform()).into(view)其中 uri 是图片的本地 uri,Transform 是您的转换类。
Glide.with(context).load(uri).transform(new Transform()).into(view)