Glide
.with(context)
.load(...)
.fitCenter()
.into(...);
使用.fitCenter()时出现问题:没有提示这个方法
硬写出来会报错cannot resolve method fitCenter()
百度根本找不到相关内容
Google了一下,Stack Overflow上说是Glide版本的问题,这样就可以继续用了:
Glide
.with(context)
.load(...)
.apply(new RequestOptions()
.fitCenter())
.into(...);
原文地址:https://stackoverflow.com/questions/44198856/glide-does-not-resolve-its-method
网友评论