728x90
반응형
우선 이미지뷰를 하나 만듭니다.
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<ImageView
android:id="@+id/imageview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher_background"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
</ImageView>
</androidx.constraintlayout.widget.ConstraintLayout>
그리고 의존성 추가를 해줍니다.
implementation 'com.github.bumptech.glide:glide:4.11.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.ImageView;
import com.bumptech.glide.Glide;
public class MainActivity extends AppCompatActivity {
ImageView imageView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
imageView = findViewById(R.id.imageview);
Glide.with(this).load(R.raw.test).into(imageView);
}
}
raw폴더를 생성해야 합니다.
해당 게시글을 참고해주세요.
해당 gif파일을 사용했습니다.
해당 gif파일을 raw폴더에 드래그 해서 넣어주시면 됩니다.
728x90
반응형
'Android' 카테고리의 다른 글
안드로이드 이미지가 변화하는 프로그레스바(ProgressBar) 커스텀 (0) | 2021.01.06 |
---|---|
안드로이드 CheckBox(체크박스) 커스텀하기 (0) | 2021.01.06 |
안드로이드 raw폴더 생성하기. (0) | 2021.01.04 |
안드로이드 ListView(리스트뷰) (Custom)커스텀 해보기. (0) | 2020.12.16 |
안드로이드 네이버 로그인 예제 (0) | 2020.12.11 |
댓글