Android 는 VideoView 를 사용 하여 MP4 를 재생 하 는 간단 한 실현

2959 단어 AndroidVideoViewMP4
VideoView 로 MP4 재생

재생 예시
간단 한 재생 기능 을 실현 하여 휴대 전화 로 컬 MP4 파일 을 재생 합 니 다.어떠한 제3자 프레임 에 도 의존 하지 않 고 어떠한 방부제 도 첨가 하지 않 는 다.
시스템 자체 제어 바 를 추가 합 니 다.
관련 코드 참조:https://github.com/RustFisher/android-MediaPlayer/tree/master/appMp4
신청 권한
저 장 된 MP4 파일 읽 기

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
레이아웃 파일 준비frag_video_view.xml에 VideoView 설치 하기;콘 텐 츠 가 중앙 에 표시 되도록LinearLayout에 끼 워 넣 고android:layout_gravity="center선택 하 라"고 말 했다.그렇지 않 으 면 동 영상 콘 텐 츠 가 중간 에 없 는 상황 이 발생 할 수 있다.

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:background="@android:color/black">

  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <VideoView
      android:id="@+id/video_view"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:layout_gravity="center" />

  </LinearLayout>

  <TextView
    android:id="@+id/path_tv"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textColor="@android:color/white"
    android:textSize="13sp" />

</RelativeLayout>
Fragment 에서 비디오 파일 을 직접 재생 합 니 다.

  private static String mMP4Path;
  VideoView mVideoView;
  MediaController mMediaController;

  @Override
  public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
    super.onViewCreated(view, savedInstanceState);
    TextView pathTv = view.findViewById(R.id.path_tv);
    mVideoView = view.findViewById(R.id.video_view);
    mMediaController = new MediaController(getContext());
    if (!TextUtils.isEmpty(mMP4Path)) {
      mVideoView.setVideoPath(mMP4Path);
      mVideoView.setMediaController(mMediaController);
      mVideoView.seekTo(0);
      mVideoView.requestFocus();
      mVideoView.start();
      pathTv.setText(mMP4Path);
    }
  }

Fragment 보기 가 생 성 되 었 을 때 MP4 파일 경 로 를 설정 하고 컨트롤 러 를 추가 하 며 시작 부분 으로 조정 하여 처음부터 재생 합 니 다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기