A basic Android video player app written in Kotlin.
This project was created as part of an Introduction to Android Mobile Application Development to practice building simple apps.
- Play a video from the
res/rawfolder. - Basic user interface with a
VideoView. - Media controls (play, pause, seek) via
MediaController. - Easy to extend for more videos or UI enhancements.
MainActivity.kt→ Main activity that handles video playback.res/raw/test→ Example video file used in the project.activity_main.xml→ Simple layout with aVideoView.
- The app uses a
VideoViewto display video content. - A
MediaControlleris attached to allow play/pause and seeking. - Video file is stored in the
res/rawfolder and referenced via URI.