I have created an intent servie to start music for my app in the background.

it is wirking but my logcat is flooded with the messages:

09-14 16:46:30.117: WARN/AudioFlinger(33): write blocked for 76 msecs, 7773 delayed writes, thread 0xb3f0 and nothing else is getting Logged.

Here is my IntentService:

import android.app.IntentService;
import android.content.Intent;
import android.media.MediaPlayer;
import android.media.MediaPlayer.OnErrorListener;
import android.widget.Toast;

public class MusicService extends IntentService {

    MediaPlayer mPlayer;
    private OnErrorListener mErrorListener;

    public MusicService() {
        super("MusicService");
        // TODO Auto-generated constructor stub
    }

    @Override
    protected void onHandleIntent(Intent intent) {
        // TODO Auto-generated method stub
          // Normally we would do some work here, like download a file.


    }   

    ///////////////////////////////////////////////////////////

    @Override
    public int onStartCommand (Intent intent, int flags, int startId)

    {
        Toast.makeText(this, "service starting", Toast.LENGTH_SHORT).show();
        mPlayer.setLooping(true);
        mPlayer.start();

        return super.onStartCommand(intent,flags,startId);


    }

    @Override

    public void onCreate ()

    {
        super.onCreate();
      //  try{
            mPlayer = MediaPlayer.create(this, R.raw.jingle);
        //}catch (IllegalArgumentException e) {
            //e.printStackTrace();
        //}catch (IllegalStateException e ) {
            //e.printStackTrace();
        //}

        if(mPlayer!= null)
        {
            mPlayer.setLooping(true); // Set looping
            mPlayer.setVolume(100,100);
        }


    mPlayer.setOnErrorListener(new OnErrorListener() {

        public boolean onError(MediaPlayer mp, int what, int extra) {
            // TODO Auto-generated method stub
            onPlayError();
            return true;
        }

    });


    }

    private void onPlayError() {
        Toast.makeText(this, "music player failed", Toast.LENGTH_SHORT).show(); 
        if(mPlayer != null)
        {
            try{
                mPlayer.stop();
                mPlayer.release();
            }finally {
                mPlayer = null;
            }
        }
    }
link|improve this question

55% accept rate
Is the music playing? – Alan Moore Sep 14 '11 at 20:15
yes and as looping is set to true.It is playing it nonstop – Ruchira Sep 14 '11 at 20:38
I get the same thing in my log file, but it doesn't seem to interfere with anything. – Alan Moore Sep 14 '11 at 20:39
Though it does not interfere with anything but looks like this blocks other messages getting printed in logs. – Ruchira Sep 14 '11 at 21:19
Well, if you figure something out let me know! It does seem to block things temporarily, but I wonder if this is just an artifact of the emulator. – Alan Moore Sep 16 '11 at 13:49
show 3 more comments
feedback

1 Answer

Permissions are needed. Put these in AndroidManifest.xml:

<uses-sdk android:minSdkVersion="8" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />

I tested it under android emulator 2.2 so my minSdkVersion is 8.

link|improve this answer
This is just plain wrong. If one of these permissions were needed and missing, it would not be audioflinger complaining it had been delayed, but rather the app would crash or part of its functionality would fail. – Chris Stratton May 21 at 4:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.