Making the music play in the background after the app has been closed












-1














My question here is about playing the music after the user closes the app (the app tab is not showing on the list of currently open apps).



I have created a class to handle the service that targets the media player to play the ring-tone music:



public class RingService extends Service {

private MediaPlayer player;


@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}

@Override
public int onStartCommand(Intent intent, int flags, int startId) {
player = MediaPlayer.create(this,
Settings.System.DEFAULT_RINGTONE_URI);
player.setLooping(true);
player.start();
return START_STICKY;

}


@Override
public void onDestroy() {
super.onDestroy();
player.stop();
}

}


in my MainActivity I use a button to start playing music. And it works fine till I close the app.



public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

}

@Override
protected void onStart() {
super.onStart();
}


public void onRing(View view) {
Intent intent = new Intent(this, RingService.class);
startService(intent);

}

public void onStop(View view) {
Intent intent = new Intent(this, RingService.class);
stopService(intent);
}
}


Is there anyone who could tell me, what I'm doing wrong? I would be extremely grateful.
And just not to start another topic for this app, I will ask it here - is it possible to relaunch the activity in 10 seconds after it has been closed by the user?










share|improve this question





























    -1














    My question here is about playing the music after the user closes the app (the app tab is not showing on the list of currently open apps).



    I have created a class to handle the service that targets the media player to play the ring-tone music:



    public class RingService extends Service {

    private MediaPlayer player;


    @Nullable
    @Override
    public IBinder onBind(Intent intent) {
    return null;
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
    player = MediaPlayer.create(this,
    Settings.System.DEFAULT_RINGTONE_URI);
    player.setLooping(true);
    player.start();
    return START_STICKY;

    }


    @Override
    public void onDestroy() {
    super.onDestroy();
    player.stop();
    }

    }


    in my MainActivity I use a button to start playing music. And it works fine till I close the app.



    public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    }

    @Override
    protected void onStart() {
    super.onStart();
    }


    public void onRing(View view) {
    Intent intent = new Intent(this, RingService.class);
    startService(intent);

    }

    public void onStop(View view) {
    Intent intent = new Intent(this, RingService.class);
    stopService(intent);
    }
    }


    Is there anyone who could tell me, what I'm doing wrong? I would be extremely grateful.
    And just not to start another topic for this app, I will ask it here - is it possible to relaunch the activity in 10 seconds after it has been closed by the user?










    share|improve this question



























      -1












      -1








      -1







      My question here is about playing the music after the user closes the app (the app tab is not showing on the list of currently open apps).



      I have created a class to handle the service that targets the media player to play the ring-tone music:



      public class RingService extends Service {

      private MediaPlayer player;


      @Nullable
      @Override
      public IBinder onBind(Intent intent) {
      return null;
      }

      @Override
      public int onStartCommand(Intent intent, int flags, int startId) {
      player = MediaPlayer.create(this,
      Settings.System.DEFAULT_RINGTONE_URI);
      player.setLooping(true);
      player.start();
      return START_STICKY;

      }


      @Override
      public void onDestroy() {
      super.onDestroy();
      player.stop();
      }

      }


      in my MainActivity I use a button to start playing music. And it works fine till I close the app.



      public class MainActivity extends AppCompatActivity {

      @Override
      protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);

      }

      @Override
      protected void onStart() {
      super.onStart();
      }


      public void onRing(View view) {
      Intent intent = new Intent(this, RingService.class);
      startService(intent);

      }

      public void onStop(View view) {
      Intent intent = new Intent(this, RingService.class);
      stopService(intent);
      }
      }


      Is there anyone who could tell me, what I'm doing wrong? I would be extremely grateful.
      And just not to start another topic for this app, I will ask it here - is it possible to relaunch the activity in 10 seconds after it has been closed by the user?










      share|improve this question















      My question here is about playing the music after the user closes the app (the app tab is not showing on the list of currently open apps).



      I have created a class to handle the service that targets the media player to play the ring-tone music:



      public class RingService extends Service {

      private MediaPlayer player;


      @Nullable
      @Override
      public IBinder onBind(Intent intent) {
      return null;
      }

      @Override
      public int onStartCommand(Intent intent, int flags, int startId) {
      player = MediaPlayer.create(this,
      Settings.System.DEFAULT_RINGTONE_URI);
      player.setLooping(true);
      player.start();
      return START_STICKY;

      }


      @Override
      public void onDestroy() {
      super.onDestroy();
      player.stop();
      }

      }


      in my MainActivity I use a button to start playing music. And it works fine till I close the app.



      public class MainActivity extends AppCompatActivity {

      @Override
      protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);

      }

      @Override
      protected void onStart() {
      super.onStart();
      }


      public void onRing(View view) {
      Intent intent = new Intent(this, RingService.class);
      startService(intent);

      }

      public void onStop(View view) {
      Intent intent = new Intent(this, RingService.class);
      stopService(intent);
      }
      }


      Is there anyone who could tell me, what I'm doing wrong? I would be extremely grateful.
      And just not to start another topic for this app, I will ask it here - is it possible to relaunch the activity in 10 seconds after it has been closed by the user?







      java android android-mediaplayer






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Dec 31 '18 at 15:47









      jpyams

      1,2331132




      1,2331132










      asked Nov 19 '18 at 15:36









      Rita V.

      34




      34
























          3 Answers
          3






          active

          oldest

          votes


















          0














          I think you missed the onCreate to implement



          My app is doing good with this code:



          public class BackgroundMusicService extends Service {
          MediaPlayer musicPlayer;
          public IBinder onBind(Intent arg) {
          return null;
          }
          @Override
          public void onCreate() {
          super.onCreate();
          musicPlayer = MediaPlayer.create(this, R.raw.your_music_file);
          musicPlayer.setLooping(true); // Set looping
          musicPlayer.setVolume(100,100);

          }
          public int onStartCommand(Intent intent, int flags, int startId) {
          musicPlayer.start();
          return 1;
          }
          @Override
          public void onDestroy() {
          musicPlayer.stop();
          musicPlayer.release();
          }


          and in you manifest:



          <service android:enabled="true" android:name=".BackgroundSoundService" />





          share|improve this answer





















          • Sorry, doesn't work for me.
            – Rita V.
            Nov 19 '18 at 16:02



















          0














          So after closing your app you want to play some ringtone using RingService but when user close the app the onStop() method is called in your MainActivity with this code Intent intent = new Intent(this, RingService.class);
          stopService(intent);
          . How service can play your music if you stopping your service at same time.
          Try to delete this code from onStop() (not sure it will solve the problem but it worth trying).



          Additionally I am recommending using Logcat for testing your code.



          https://developer.android.com/studio/command-line/logcat






          share|improve this answer





























            0














            You need to put your service in foreground with startForeground(id, notification), check the official docs for reference.



            When you have a service in foreground, the chances of your process being killed are reduced drastically because your process won't be considered as in background. The downside is that you must show a permanent notification, which in your case might even be desirable because you might need controls for the player.






            share|improve this answer





















              Your Answer






              StackExchange.ifUsing("editor", function () {
              StackExchange.using("externalEditor", function () {
              StackExchange.using("snippets", function () {
              StackExchange.snippets.init();
              });
              });
              }, "code-snippets");

              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "1"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53377987%2fmaking-the-music-play-in-the-background-after-the-app-has-been-closed%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              3 Answers
              3






              active

              oldest

              votes








              3 Answers
              3






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              0














              I think you missed the onCreate to implement



              My app is doing good with this code:



              public class BackgroundMusicService extends Service {
              MediaPlayer musicPlayer;
              public IBinder onBind(Intent arg) {
              return null;
              }
              @Override
              public void onCreate() {
              super.onCreate();
              musicPlayer = MediaPlayer.create(this, R.raw.your_music_file);
              musicPlayer.setLooping(true); // Set looping
              musicPlayer.setVolume(100,100);

              }
              public int onStartCommand(Intent intent, int flags, int startId) {
              musicPlayer.start();
              return 1;
              }
              @Override
              public void onDestroy() {
              musicPlayer.stop();
              musicPlayer.release();
              }


              and in you manifest:



              <service android:enabled="true" android:name=".BackgroundSoundService" />





              share|improve this answer





















              • Sorry, doesn't work for me.
                – Rita V.
                Nov 19 '18 at 16:02
















              0














              I think you missed the onCreate to implement



              My app is doing good with this code:



              public class BackgroundMusicService extends Service {
              MediaPlayer musicPlayer;
              public IBinder onBind(Intent arg) {
              return null;
              }
              @Override
              public void onCreate() {
              super.onCreate();
              musicPlayer = MediaPlayer.create(this, R.raw.your_music_file);
              musicPlayer.setLooping(true); // Set looping
              musicPlayer.setVolume(100,100);

              }
              public int onStartCommand(Intent intent, int flags, int startId) {
              musicPlayer.start();
              return 1;
              }
              @Override
              public void onDestroy() {
              musicPlayer.stop();
              musicPlayer.release();
              }


              and in you manifest:



              <service android:enabled="true" android:name=".BackgroundSoundService" />





              share|improve this answer





















              • Sorry, doesn't work for me.
                – Rita V.
                Nov 19 '18 at 16:02














              0












              0








              0






              I think you missed the onCreate to implement



              My app is doing good with this code:



              public class BackgroundMusicService extends Service {
              MediaPlayer musicPlayer;
              public IBinder onBind(Intent arg) {
              return null;
              }
              @Override
              public void onCreate() {
              super.onCreate();
              musicPlayer = MediaPlayer.create(this, R.raw.your_music_file);
              musicPlayer.setLooping(true); // Set looping
              musicPlayer.setVolume(100,100);

              }
              public int onStartCommand(Intent intent, int flags, int startId) {
              musicPlayer.start();
              return 1;
              }
              @Override
              public void onDestroy() {
              musicPlayer.stop();
              musicPlayer.release();
              }


              and in you manifest:



              <service android:enabled="true" android:name=".BackgroundSoundService" />





              share|improve this answer












              I think you missed the onCreate to implement



              My app is doing good with this code:



              public class BackgroundMusicService extends Service {
              MediaPlayer musicPlayer;
              public IBinder onBind(Intent arg) {
              return null;
              }
              @Override
              public void onCreate() {
              super.onCreate();
              musicPlayer = MediaPlayer.create(this, R.raw.your_music_file);
              musicPlayer.setLooping(true); // Set looping
              musicPlayer.setVolume(100,100);

              }
              public int onStartCommand(Intent intent, int flags, int startId) {
              musicPlayer.start();
              return 1;
              }
              @Override
              public void onDestroy() {
              musicPlayer.stop();
              musicPlayer.release();
              }


              and in you manifest:



              <service android:enabled="true" android:name=".BackgroundSoundService" />






              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Nov 19 '18 at 15:47









              Taha wakeel

              896




              896












              • Sorry, doesn't work for me.
                – Rita V.
                Nov 19 '18 at 16:02


















              • Sorry, doesn't work for me.
                – Rita V.
                Nov 19 '18 at 16:02
















              Sorry, doesn't work for me.
              – Rita V.
              Nov 19 '18 at 16:02




              Sorry, doesn't work for me.
              – Rita V.
              Nov 19 '18 at 16:02













              0














              So after closing your app you want to play some ringtone using RingService but when user close the app the onStop() method is called in your MainActivity with this code Intent intent = new Intent(this, RingService.class);
              stopService(intent);
              . How service can play your music if you stopping your service at same time.
              Try to delete this code from onStop() (not sure it will solve the problem but it worth trying).



              Additionally I am recommending using Logcat for testing your code.



              https://developer.android.com/studio/command-line/logcat






              share|improve this answer


























                0














                So after closing your app you want to play some ringtone using RingService but when user close the app the onStop() method is called in your MainActivity with this code Intent intent = new Intent(this, RingService.class);
                stopService(intent);
                . How service can play your music if you stopping your service at same time.
                Try to delete this code from onStop() (not sure it will solve the problem but it worth trying).



                Additionally I am recommending using Logcat for testing your code.



                https://developer.android.com/studio/command-line/logcat






                share|improve this answer
























                  0












                  0








                  0






                  So after closing your app you want to play some ringtone using RingService but when user close the app the onStop() method is called in your MainActivity with this code Intent intent = new Intent(this, RingService.class);
                  stopService(intent);
                  . How service can play your music if you stopping your service at same time.
                  Try to delete this code from onStop() (not sure it will solve the problem but it worth trying).



                  Additionally I am recommending using Logcat for testing your code.



                  https://developer.android.com/studio/command-line/logcat






                  share|improve this answer












                  So after closing your app you want to play some ringtone using RingService but when user close the app the onStop() method is called in your MainActivity with this code Intent intent = new Intent(this, RingService.class);
                  stopService(intent);
                  . How service can play your music if you stopping your service at same time.
                  Try to delete this code from onStop() (not sure it will solve the problem but it worth trying).



                  Additionally I am recommending using Logcat for testing your code.



                  https://developer.android.com/studio/command-line/logcat







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 19 '18 at 17:10









                  mr.kostua

                  536




                  536























                      0














                      You need to put your service in foreground with startForeground(id, notification), check the official docs for reference.



                      When you have a service in foreground, the chances of your process being killed are reduced drastically because your process won't be considered as in background. The downside is that you must show a permanent notification, which in your case might even be desirable because you might need controls for the player.






                      share|improve this answer


























                        0














                        You need to put your service in foreground with startForeground(id, notification), check the official docs for reference.



                        When you have a service in foreground, the chances of your process being killed are reduced drastically because your process won't be considered as in background. The downside is that you must show a permanent notification, which in your case might even be desirable because you might need controls for the player.






                        share|improve this answer
























                          0












                          0








                          0






                          You need to put your service in foreground with startForeground(id, notification), check the official docs for reference.



                          When you have a service in foreground, the chances of your process being killed are reduced drastically because your process won't be considered as in background. The downside is that you must show a permanent notification, which in your case might even be desirable because you might need controls for the player.






                          share|improve this answer












                          You need to put your service in foreground with startForeground(id, notification), check the official docs for reference.



                          When you have a service in foreground, the chances of your process being killed are reduced drastically because your process won't be considered as in background. The downside is that you must show a permanent notification, which in your case might even be desirable because you might need controls for the player.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Nov 19 '18 at 19:26









                          lelloman

                          8,48733353




                          8,48733353






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.





                              Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                              Please pay close attention to the following guidance:


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53377987%2fmaking-the-music-play-in-the-background-after-the-app-has-been-closed%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              MongoDB - Not Authorized To Execute Command

                              Npm cannot find a required file even through it is in the searched directory

                              in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith