-1
A
回答
0
向您的應用程序添加另一個名爲SplashActivity的活動,並設置視頻並在此活動的onCreate方法中播放視頻,將onCompleteListener設置爲videoView,並在視頻播放結束時啓動MainActivity。
import android.app.Activity;
import android.content.Intent;
import android.media.MediaPlayer;
import android.net.Uri;
import android.os.Bundle;
import android.widget.VideoView;
public class SplashActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash);
VideoView videoView = (VideoView) findViewById(R.id.video_view);
Uri videoUri = Uri.parse("android.resource://ir.ugstudio.playvideo/raw/video1");
videoView.setVideoURI(videoUri);
videoView.start();
videoView.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {
@Override
public void onCompletion(MediaPlayer mediaPlayer) {
startActivity(new Intent(SplashActivity.this, MainActivity.class));
}
});
}
}
這是activity_splash.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
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="wrap_content" />
</LinearLayout>
創建一個名爲 「資源」 文件夾中的 「原始」 文件夾,並把你的 「VIDEO1」 在這。
相關問題
- 1. 我需要幫助,我介紹到Java分配
- 2. 我需要幫助,爲我的應用程序創建一個氣球動畫
- 3. 我希望我的應用程序用戶使用MyVideoPLayer播放每個視頻
- 4. 我的應用程序崩潰時,她是午飯
- 5. 我需要我的Java程序幫助
- 6. 幫助介紹到Java程序調用
- 7. 我需要幫助應用sfFeed2Plugin
- 8. 在應用程序啓動時顯示介紹視頻
- 9. 我需要幫助配置ASP.net簡介
- 10. 需要iOS的視頻通話應用程序幫助
- 11. Load當應用程序午飯
- 12. 需要幫助發佈我的新iOS應用程序
- 13. 需要幫助關閉我的Android應用程序
- 14. 在我的應用程序中需要幫助實現接口
- 15. 我需要關於部署Windows應用程序的幫助
- 16. 在我的應用程序中需要Gmail集成幫助
- 17. 在運行我的Java應用程序時需要幫助
- 18. 需要幫助爲我的Rails應用程序創建structure.sql
- 19. 需要幫助爲我的塗鴉應用程序創建TabView
- 20. 需要幫助糾正我的Swing應用程序輸出
- 21. 我需要控制檯應用程序的幫助?
- 22. 我需要關於Ubuntu 9.10的幫助crontab GUI應用程序
- 23. 我需要幫助調試java猜謎遊戲應用程序
- 24. 我需要幫助來設置Facebook應用程序
- 25. 幫助!我是否需要批准應用程序
- 26. 我需要一些幫助寫一個Android應用程序
- 27. 我需要幫助學習iPhone應用程序開發?
- 28. 我需要幫助UpdateForm(); (Windows窗體應用程序)
- 29. cocos2d的動畫應用介紹
- 30. 我希望通過編程把我的Android應用程序
在啓動畫面的'videoview'中運行此視頻 –