반응형
공감 및 댓글은 포스팅 하는데 아주아주 큰 힘이 됩니다!! 포스팅 내용이 찾아주신 분들께 도움이 되길 바라며 더 깔끔하고 좋은 포스팅을 만들어 나가겠습니다^^
|
VideoView mp4 재생하기, ImageView에 gif파일 재생하기에 대해 알아보겠습니다.
xml은 하나만 사용했습니다.
activity_view.xml
<?xml version="1.0" encoding="utf-8"?>
<layout 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"
tools:context=".ViewActivity">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toTopOf="@+id/videoView"
android:src="@drawable/image"
android:id="@+id/imgView"
android:layout_width="0dp"
android:layout_height="0dp" />
<VideoView
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imgView"
android:id="@+id/videoView"
android:layout_width="0dp"
android:layout_height="0dp" />
</android.support.constraint.ConstraintLayout>
</layout>
VideoView 에 mp4 파일 재생하기
간단합니다.
먼저 mp4 파일이 필요하겠죠 ㅎㅎ
ImageView에 gif 파일 재생하기
gif파일을 준비하시고 Glide 라이브러리를 사용하면 됩니다.
implementation 'com.github.bumptech.glide:glide:4.6.1'
ViewActivity.java
package park.sunggyun.thomas.texttospeechex;
import android.databinding.DataBindingUtil;
import android.net.Uri;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import com.bumptech.glide.Glide;
import park.sunggyun.thomas.texttospeechex.databinding.ActivityViewBinding;
public class ViewActivity extends AppCompatActivity {
private ActivityViewBinding binding;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
binding = DataBindingUtil.setContentView(this, R.layout.activity_view);
Glide.with(this).load(R.drawable.image).into(binding.imgView);
String videoRootPath = "android.resource://" + getPackageName() + "/";
binding.videoView.setVideoURI(Uri.parse(videoRootPath + R.raw.video));
binding.videoView.start();
binding.videoView.setOnCompletionListener(mp -> binding.videoView.start());
}
}
별로 어렵지 않죠?
mp4 파일은 res 아래에 raw라는 디렉토리를 하나 만들어서 거기에 넣어주면 됩니다.
binding.videoView.setOnCompletionListener 는
비디오 재생이 끝났을 때 실행할 작업을 추가해주면 됩니다.
저는 무한 반복을 위해 다시 실행하는 코드를 넣었습니다.
반응형
'안드로이드' 카테고리의 다른 글
안드로이드 Dialog 생성 시 Context 인자에 getApplicationContext() 사용 시 에러 발생 (0) | 2018.11.07 |
---|---|
다이얼로그 외부 터치 안되게, 배경 투명하게 만들기 (0) | 2018.11.05 |
안드로이드 screen size 스크린 사이즈, 화면 크기 구하는 코드 (0) | 2018.10.17 |
안드로이드 스튜디오에서 람다식 사용하려면? (0) | 2018.10.02 |
안드로이드 Retrofit2 사용 예제. GET, POST, PUT, PATCH, DELETE (0) | 2018.09.13 |