Android VideoView
with custom media controller
VideoView
● http://developer.android.com/reference/andr
oid/widget/VideoView.html
● API for display video contents
● Can play video on external storage or with
URL address
● Add VideoView
component on layout file
o Set layout_width as
match_parent to fit
video size with layout
width
● Set content on VideoView
o setVideoURI(...)
o setVideoPath(...)
● Use start(), stop(), etc. to
control video.
main_layout.xml
MainActivity.java
● If setting MediaController, you can
use default video controller.
o VideoView.setMediaController
o Play/pause, FF, REW,
Seekbar, current / end time.
● setOnPreparedListener -> onPrepared()
o Called when VideoView is prepared for play.
o Use when waiting contents on online to be prepared.
● setOnCompletionListener -> onCompletion
o Called when VideoView playback is completed
Media controller
● http://developer.android.com/reference/andr
oid/media/session/MediaController.html
● Offers default media controller for media
player
● Only needs to create instance and add
VideoView.setMediaController(...)
● Check on implementing custom controller
● Play/pause button for play
and pause video
● Stop button for stop video
● Seek bar for seeking
video on timeline
● Running time for marking
current time position of
video
● For option, show progress
dialog while video is
being prepared
● After VideoView prepared…
o Start video
o Set max value on Seek bar to sync with video timeline
o Set Runnable object to message queue by postDelayed(...) for
update time/seek bar
● Implement Runnable
object for update seekbar
movement / current time.
o Set runnable object
every second during
video is playing.

More Related Content

PDF
Bote De Basura Con Separador AutomáTico
PDF
Mobile Meow at Mobilism
PDF
Android Multimedia Support
PDF
Integrating web-based videos in your PDFs (with FrameMaker-to Acrobat TimeSav...
PDF
JS Days Mobile Meow
PPT
Creating Your Own Video/Screen Captures
PPTX
Setting up your Android Tablet - KioWare Android Configuration Part II
PDF
Web DU Mobile Meow
Bote De Basura Con Separador AutomáTico
Mobile Meow at Mobilism
Android Multimedia Support
Integrating web-based videos in your PDFs (with FrameMaker-to Acrobat TimeSav...
JS Days Mobile Meow
Creating Your Own Video/Screen Captures
Setting up your Android Tablet - KioWare Android Configuration Part II
Web DU Mobile Meow

Similar to Android video player (20)

PDF
(WS11) Dobrica Pavlinušić: HTML5TV - kako obraditi i objaviti predavanja na w...
PDF
HTML5 multimedia - where we are, where we're going
PDF
Tech talk live custom content viewers in alfresco share
PDF
Introduce Android TV and new features from Google I/O 2016
PPTX
Apache Maven
PPTX
Geo vidos presentation for windows startup challenge
DOCX
Qditor pip user guide for windows pc
DOCX
geovision remote playback.
PPT
M.youtube can not display
PDF
3 2-1-Action! Screencasting Tools
PPTX
Browserium
PPTX
Browserium
PDF
Ie active instructions 副本
PDF
WPE, a New WebKit Port Optimised for Embedded (IBC 2017)
PDF
HTML5 APIs - The New Frontier
PPT
Jsr135 sup
PDF
Using the Presentation API and external screens on Android
PDF
MacVide FlashVideo Converter UserGuide
PDF
HTML5 Multimedia: where we are, where we're going
PDF
Running Code in the Android Stack at ABS 2014
(WS11) Dobrica Pavlinušić: HTML5TV - kako obraditi i objaviti predavanja na w...
HTML5 multimedia - where we are, where we're going
Tech talk live custom content viewers in alfresco share
Introduce Android TV and new features from Google I/O 2016
Apache Maven
Geo vidos presentation for windows startup challenge
Qditor pip user guide for windows pc
geovision remote playback.
M.youtube can not display
3 2-1-Action! Screencasting Tools
Browserium
Browserium
Ie active instructions 副本
WPE, a New WebKit Port Optimised for Embedded (IBC 2017)
HTML5 APIs - The New Frontier
Jsr135 sup
Using the Presentation API and external screens on Android
MacVide FlashVideo Converter UserGuide
HTML5 Multimedia: where we are, where we're going
Running Code in the Android Stack at ABS 2014
Ad

Recently uploaded (20)

PPT
What is a Computer? Input Devices /output devices
PDF
A novel scalable deep ensemble learning framework for big data classification...
PDF
Taming the Chaos: How to Turn Unstructured Data into Decisions
PDF
Enhancing emotion recognition model for a student engagement use case through...
PPTX
Chapter 5: Probability Theory and Statistics
PDF
WOOl fibre morphology and structure.pdf for textiles
PDF
Microsoft Solutions Partner Drive Digital Transformation with D365.pdf
PDF
August Patch Tuesday
PPT
Module 1.ppt Iot fundamentals and Architecture
PDF
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
PPT
Geologic Time for studying geology for geologist
PDF
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
PPTX
Benefits of Physical activity for teenagers.pptx
PDF
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
PPTX
Final SEM Unit 1 for mit wpu at pune .pptx
PDF
Hybrid horned lizard optimization algorithm-aquila optimizer for DC motor
PDF
Getting Started with Data Integration: FME Form 101
PDF
Zenith AI: Advanced Artificial Intelligence
PPTX
The various Industrial Revolutions .pptx
PPTX
Tartificialntelligence_presentation.pptx
What is a Computer? Input Devices /output devices
A novel scalable deep ensemble learning framework for big data classification...
Taming the Chaos: How to Turn Unstructured Data into Decisions
Enhancing emotion recognition model for a student engagement use case through...
Chapter 5: Probability Theory and Statistics
WOOl fibre morphology and structure.pdf for textiles
Microsoft Solutions Partner Drive Digital Transformation with D365.pdf
August Patch Tuesday
Module 1.ppt Iot fundamentals and Architecture
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
Geologic Time for studying geology for geologist
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
Benefits of Physical activity for teenagers.pptx
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
Final SEM Unit 1 for mit wpu at pune .pptx
Hybrid horned lizard optimization algorithm-aquila optimizer for DC motor
Getting Started with Data Integration: FME Form 101
Zenith AI: Advanced Artificial Intelligence
The various Industrial Revolutions .pptx
Tartificialntelligence_presentation.pptx
Ad

Android video player