Glide无法解析方法';进入(android.widget.TextView)和#x27;

Glide无法解析方法';进入(android.widget.TextView)和#x27;,android,android-glide,Android,Android Glide,我使用下面的代码,但它表示它无法解析为()方法。但另一个项目是工作 Glide.with(mContext.getApplicationContext()) .load(currentNews.getmThumbnail()) .into(holder.thumbnailImageView); 这是我的格拉德尔依赖 implementation fileTree(dir: 'libs', include: ['*.jar']) i

我使用下面的代码,但它表示它无法解析为()方法。但另一个项目是工作

Glide.with(mContext.getApplicationContext())
                .load(currentNews.getmThumbnail())
                .into(holder.thumbnailImageView);
这是我的格拉德尔依赖

implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.squareup.picasso:picasso:2.71828'
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'

implementation 'androidx.recyclerview:recyclerview:1.0.0'
implementation 'androidx.cardview:cardview:1.0.0'

implementation 'com.github.bumptech.glide:glide:4.10.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.10.0'

testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'com.google.android.material:material:1.0.0'

thumbnailImageView是一个
ImageView
TextView
是一个
ImageView
我发现了问题,谢谢