videoview 的内容全屏显示
the contents of videoview to fullscreen
我有一个 videoview 用于我的闪屏。 videoview 占据屏幕的顶部和下方的空白部分。我想要全屏播放视频。
这是我的 xml 文件:
<LinearLayout 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"
android:background="#ffffff"
tools:context="com.example.acer.myapplication.splash">
<VideoView
android:id="@+id/videoView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="fill_vertical"/>
</LinearLayout>
java代码:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash);
VideoView videoView = (VideoView) findViewById(R.id.videoView);
Uri video=Uri.parse("android.resource://"+getPackageName()+"/"+R.raw.test);
videoView.setVideoURI(video);
videoView.requestFocus();
videoView.start();
videoView.setOnCompletionListener(new OnCompletionListener() {
@Override
public void onCompletion(MediaPlayer arg0) {
startActivity(new Intent(getBaseContext(), first.class));
finish();
}
});
}
对视频使用以下 XML。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<VideoView android:id="@+id/videoView"
android:layout_width="fill_parent"
android:layout_alignParentRight="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"
android:layout_height="fill_parent">
</VideoView>
编辑
必须旋转视频才能在纵向模式下使用。使用 this website 将视频旋转 90 度,然后将其设置为闪屏。
我有一个 videoview 用于我的闪屏。 videoview 占据屏幕的顶部和下方的空白部分。我想要全屏播放视频。
这是我的 xml 文件:
<LinearLayout 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"
android:background="#ffffff"
tools:context="com.example.acer.myapplication.splash">
<VideoView
android:id="@+id/videoView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="fill_vertical"/>
</LinearLayout>
java代码:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash);
VideoView videoView = (VideoView) findViewById(R.id.videoView);
Uri video=Uri.parse("android.resource://"+getPackageName()+"/"+R.raw.test);
videoView.setVideoURI(video);
videoView.requestFocus();
videoView.start();
videoView.setOnCompletionListener(new OnCompletionListener() {
@Override
public void onCompletion(MediaPlayer arg0) {
startActivity(new Intent(getBaseContext(), first.class));
finish();
}
});
}
对视频使用以下 XML。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<VideoView android:id="@+id/videoView"
android:layout_width="fill_parent"
android:layout_alignParentRight="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"
android:layout_height="fill_parent">
</VideoView>
编辑
必须旋转视频才能在纵向模式下使用。使用 this website 将视频旋转 90 度,然后将其设置为闪屏。