Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6907457
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T08:26:14+00:00 2026-05-27T08:26:14+00:00

I have a service that when it finishs running tasks it plays a notification

  • 0

I have a service that when it finishs running tasks it plays a notification with sound. As it ends, my calling application, if it is on top calls to stopservice. The problem is that notificationmanager returns before the sound ends, so the application stops the service before the sound has finished (if it is long). Is there a way I can detect when the sound has finish in order to not let the service stops before the sound ends?.
I have been looking into soundmanager and other threads without luck. Also, A workaround is to put a Thread.sleep(ms), but if the notificatio sound is long, it could be stopped anyway, and I would like responsitivity from my app just after service finishs.
A possible solution would be to calculate the length of the mp3 file but I dont know how to do it….

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T08:26:15+00:00Added an answer on May 27, 2026 at 8:26 am

    Assuming you are using a MediaPlayer for playback, you can get the duration with MediaPlayer.getDuration().

    Please note, that this won’t work with some VBR mp3. so you might want to save the mp3 with a constant bitrate or run a tool like vbrfix before putting them in your app.

    The duration is returned in milliseconds, so you can simply pass this value to SystemClock.sleep()

    /edit:

    Okay, if you have the file saved as an asset, you can use this code:

    MediaPlayer media = new MediaPlayer();
        AssetFileDescriptor descriptor;
        try {
            descriptor = assetMan.openFd("YOURNAME.mp3");
            media.setDataSource(descriptor.getFileDescriptor(), descriptor.getStartOffset(), descriptor.getLength());
            descriptor.close();
            media.prepare();
        } catch (IOException e) {
            // File not found
            e.printStackTrace();
        }
         media.getDuration();
        media.release();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a service that sometimes calls a batch file. The batch file takes
i make a lock screen application.. i have some service that listen to the
I have developed an application which starts a custom service that fires a countdowntimer.
We have a REST service that calls out to a system process that could
I have a service running some different tasks in a loop until the service
We have a service that has some settings that are supported only over net.tcp.
We have a service that runs methods used for data import/export at specified intervals.
I have a service that I am rewriting to use threading. I understand that
I have a service that accepts callbacks from a provider. Motivation : I do
I have a service that I would like it to become single instance, because

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.