Android Study Notes (14th): mediaplayer playing audio

Source: Internet
Author: User
Mediaplayer provides playback, pause, stop, and replay methods. It can only play one audio file at a time and is suitable for playing large files. Usage: 1. Play from resource files, [Java] view plaincopymediaplayer player1 = new mediaplayer (). create (this, R. raw. message); player1.start (); 2. playback from the file system, [Java] view plaincopy mediaplayer player = new mediaplayer (); string Path = "/sdcard/message.mp3 "; try {player. setdatasource (PATH); player. prepare (); catch (ioexception e) {e. printstacktrace (); player. start (); 3. play from the network. [Java] view plaincopystring Path = "http ://*************. MP3 "; Uri uri = Uri. parse (PATH); mediaplayer player = new mediaplayer (). create (this, Uri); player. start ();
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.