android audio player by activity lifecycle

www.la‮.iruttu‬com
android audio player by activity lifecycle

android activity music player stop and resume:

@Override
    protected void onStop() {
        super.onStop();
        backgroundmusic.pause();
        length = backgroundmusic.getCurrentPosition();  
    }

@Override
    protected void onResume() {
        super.onResume();
        backgroundmusic.seekTo(length);
        backgroundmusic.start();
    }
Created Time:2017-08-31 10:09:01  Author:lautturi