Design of playing mode in Android music player

Source: Internet
Author: User

In a music player, the playback mode is generally automatically recognized after the music is played. The following logic is given:Code, You can add appropriate code as needed

 

Public static final int all = 0; // all loops public static final int single = 1; // single loop public static final int random = 2; // random // after playing a song (set the playing mode here) public class completed implements oncompletionlistener {@ override public void oncompletion (mediaplayer MP) {If (playmode = All) // all loops {If (position = listmusic. size ()-1) // default loop playback {position = 0; // first} else {position ++ ;}} else if (playmode = Single) // single loop {// position does not need to be changed} else if (playmode = random) // random {position = (INT) (math. random () * listmusic. size (); // random playback} elseset (); // processing of other playbacks }}

Note: When making a single loop, it is best not to design it like the code above, because no actual position is given,ProgramIt may jump out of bugs or even crash. The single loop I implemented is to listen to the user's mode selection. After the music is played, restart mediaplayer.

 

 

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.