rygelouv / android-audio-sensei

High-level library to make android audio recording and playing more simple by handling boring stuff like runtime permissions and by completely abstracting audio playback controller

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can I synchronize the Player view?

eggham0518 opened this issue · comments

Can I synchronize the Player view running in the service with the Player view of the activity?

There is a player playing in the service for background playback. I'm looking for a way to synchronize it with an activity's player when the user opens the activity again,

I hope you can help me.

The way I tried.

Static PLAY_SERVICE;


MainActivity
@onCreate
if(isServiceRunning ==true){
audioplayerView = PLAY_SERVICE.audioplayerView;

audioplayerView .play(); //It is possible to control through the method, but not through the player view of the activity.

}

I found a solution. Just use addView.

@eggham0518 I'm glad you figure that out. I will take this in account for the next release and maybe come up with a better solution.
I'm closing the issue for now.