Ringtones implemented by the android alarm Program

Source: Internet
Author: User

Code:

Private mediaplayer; <br/> mediaplayer = mediaplayer. create (context, R. drawable. XXX); <br/> runnable RMP = new runnable () {<br/> Public void run () {<br/> mediaplayer01.start (); <br/>}< br/>}; <br/> // then: <br/> final thread TMP = new thread (RMP ); <br/> // at the appropriate place: <br/> TMP. start ();
 

 

A little simpler and let the music play cyclically:

Mediaplayer = mediaplayer. Create (this, R. Raw. m); <br/> mediaplayer. setlooping (true );

 

To obtain the playing time:

1. Player. getcurrentposition ()
2. Public static string timetostring (long duration)
{
If (duration <0)
Return "00:00 ";
Stringbuffer sb = new stringbuffer ();
Long M = duration/(60*1000 );
SB. append (M <10? "0" + M: m );
SB. append (":");
Long S = (duration % (60*1000)/1000;
SB. append (S <10? "0" + S: S );
Return sb. tostring ();
}
3. The timetostring method returns the playback time.

 

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.