Android View에서 GIF 동영상 보기
Gif 동영상을보고 싶습니다.
Android의 ImageView에서 Gif 동영상을 표시하고 싶습니다.
빙글빙글 보면 커스텀 뷰를 만들자, Movie 클래스를 사용한다!
등 다양한 힘들 것 같다. . .
신 도서관 Glide
무려 이미지 라이브러리 Glide를 사용하면 화려, 깨끗하고 쉽게 ImageView에 Gif를 표시할 수 버린다.
해보자
종속성
build.gradledependencies {
compile 'com.github.bumptech.glide:glide:3.6.1'
}
gif를 프로젝트에 넣자.
gif를 넣는 곳은
res/raw
입니다.
View 준비
activity_main.xml <ImageView
android:id="@+id/gifView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
바인딩하자.
MainActivity.javaImageView imageView = (ImageView) findViewById(R.id.gifView);
GlideDrawableImageViewTarget target = new GlideDrawableImageViewTarget(imageView);
Glide.with(this).load(R.raw.lane).into(target);
완성
Reference
이 문제에 관하여(Android View에서 GIF 동영상 보기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/maehara08/items/eef63804c52b2e0bb404
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
종속성
build.gradle
dependencies {
compile 'com.github.bumptech.glide:glide:3.6.1'
}
gif를 프로젝트에 넣자.
gif를 넣는 곳은
res/raw
입니다.
View 준비
activity_main.xml
<ImageView
android:id="@+id/gifView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
바인딩하자.
MainActivity.java
ImageView imageView = (ImageView) findViewById(R.id.gifView);
GlideDrawableImageViewTarget target = new GlideDrawableImageViewTarget(imageView);
Glide.with(this).load(R.raw.lane).into(target);
완성
Reference
이 문제에 관하여(Android View에서 GIF 동영상 보기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/maehara08/items/eef63804c52b2e0bb404
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(Android View에서 GIF 동영상 보기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/maehara08/items/eef63804c52b2e0bb404텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)