# MediaPlayer **Repository Path**: yanglingui/MediaPlayer ## Basic Information - **Project Name**: MediaPlayer - **Description**: 多媒体操作; - **Primary Language**: Android - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2016-11-10 - **Last Updated**: 2025-07-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #MediaPlayer videoView 的简单的使用 ``` mVideoView = (VideoView) findViewById(R.id.vidioView); //设置路径; mVideoView.setVideoPath("/mnt/sdcard/sirendingzhi.mp4"); //使用默认的控制器; mVideoView.setMediaController(new MediaController(this)); //开始工作; mVideoView.start(); ```