💌 [안드로이드/코틀린] GIF 파일 ImageView 로 넣기
📌 1. res/raw 폴더 추가
📌 2. gif 파일 추가
📌 3. Module 수준의 gradle에 추가
// Glide
implementation 'com.github.bumptech.glide:glide:4.11.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
📌 4. xml 파일에 ImageView 추가
<ImageView
android:id="@+id/no_acount_imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/margin_60dp"
android:layout_gravity="center"
android:contentDescription="@string/no_acount_description"/>
📌 5. 코드 추가
Glide.with(this).load(R.raw.fundegi_if_no_acount).override(560, 560).into(binding.noAcountImageView)
🤷♀️ 끗 ~~~!!