在Android中,要使用VideoView播放视频,请按照以下步骤操作:
build.gradle
文件中添加依赖项(如果尚未添加):dependencies {
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.0'
}
activity_main.xml
)中添加VideoView控件:<?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">
<VideoView
android:id="@+id/videoView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
MainActivity.java
)中设置视频源并播放视频:import android.net.Uri;
import android.os.Bundle;
import android.widget.MediaController;
import android.widget.VideoView;
import androidx.appcompat.app.AppCompatActivity;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
VideoView videoView = findViewById(R.id.videoView);
// 设置视频源
String videoPath = "android.resource://" + getPackageName() + "/" + R.raw.your_video_file;
Uri uri = Uri.parse(videoPath);
videoView.setVideoURI(uri);
// 添加媒体控制器以便于控制播放
MediaController mediaController = new MediaController(this);
videoView.setMediaController(mediaController);
mediaController.setAnchorView(videoView);
// 开始播放视频
videoView.start();
}
@Override
protected void onDestroy() {
super.onDestroy();
// 释放资源
if (videoView != null) {
videoView.release();
videoView = null;
}
}
}
请注意,您需要将your_video_file
替换为您的视频文件名(不带扩展名),并将其放置在项目的res/raw
文件夹中。如果raw
文件夹不存在,请创建一个。
现在运行应用程序,VideoView应该可以播放视频了。