Android 는 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 파일 경 로 를 설정 하고 컨트롤 러 를 추가 하 며 시작 부분 으로 조정 하여 처음부터 재생 합 니 다.이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Bitrise에서 배포 어플리케이션 설정 테스트하기이 글은 Bitrise 광고 달력의 23일째 글입니다. 자체 또는 당사 등에서 Bitrise 구축 서비스를 사용합니다. 그나저나 며칠 전 Bitrise User Group Meetup #3에서 아래 슬라이드를 발표했...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.