Video as a Splash Screen instead of Picture

前端 未结 5 1541
天命终不由人
天命终不由人 2020-12-13 15:43

I am doing the Android Programming Tutorial on Splash Screens where you show a picture or text for 5 Seconds than it goes to the Main Application. My Question is..Instead of

5条回答
  •  遥遥无期
    2020-12-13 16:09

    Use a MediaPlayer along with a VideoView. You can then "listen" for when the video playback is done, by setting an OnCompletionListener on your MediaPlayer.

    See here: http://developer.android.com/reference/android/media/MediaPlayer.html And here: http://developer.android.com/reference/android/widget/VideoView.html

    Also, pay special attention to the state diagram on the MediaPlayer reference page. It can be a bit tricky and has been known to trip a few people up.

提交回复
热议问题