2
Android Studio에서 글라이드를 사용하여 R.drawable에 저장된 리소스에서 GIF 애니메이션을 처리하려고하는데 '글라이드'라는 sysmbol을 해결할 수 없습니다. "Android Studio - '글라이드'기호를 해결할 수 없습니다
나는 builde.gradle
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.2.0'
compile 'com.github.bumptech.glide:glide:3.7.0'
}
내 종속성 글라이드를 추가했고 나는 GIF로 이미지보기를 설정하려면 다음 코드를 사용하고 있습니다.
ImageView img=(ImageView)findViewById(R.id.catImg);
int resourceId = R.drawable.gangrycat;
Glide.with(this.context)
.load(resourceId)
.into(img);
here를 찾을 수 있습니다. –