<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_video_preview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.kavinduwijesuriya.camera_test.VideoPreviewActivity">
<VideoView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"
android:id="@+id/videoPreview">
</VideoView>
</RelativeLayout>
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_video_preview2);
String fileUrl = getIntent().getStringExtra("filePath");
VideoView videoPreview = (VideoView) findViewById(R.id.videoPreview);
videoPreview.setVideoPath(fileUrl);
videoPreview.start();
}
我正在尝试播放相机拍摄的视频,以便在视频视图上播放全屏宽度和高度。目前,视频在不同的设备中以不同的方式被拉伸。
有人可以建议一种阻止视频拉伸的方法吗?