我如何在Android应用程序上播放介绍

时间:2015-03-20 09:08:35

标签: android

只是一个小视频,就像一个动画,作为一个标志,只需5-7秒,应用程序应该出现,只是一个简单的我认为视频播放器没有按钮没有点击。

你能告诉我该怎么办吗?

1 个答案:

答案 0 :(得分:1)

将您的介绍视频文件放在res / raw文件夹中,并将splash layout设置为:

<?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" >

<VideoView
    android:id="@+id/video"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:fitsSystemWindows="true" >
</VideoView>

并在源代码中写道:

VideoView videoview = (VideoView) findViewById(R.id.video);
    videoview.setVideoURI(Uri.parse("android.resource://" + getPackageName() + "/" + R.raw.intro_splash));
    videoview.setMediaController(null);
    videoview.start();
    videoview.setOnCompletionListener(new OnCompletionListener()
    {
        @Override
        public void onCompletion(MediaPlayer mp)
        {
            startActivity(new Intent(SplashActivity.this,AbcActivity.class));
            finish();
        }
    });