与前台服务android通信
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了与前台服务android通信相关的知识,希望对你有一定的参考价值。
这是第一个问题,但我已经有一段时间了。
我有什么:
我正在构建一个播放音频流和在线播放列表的android应用。一切都工作正常,但我在与我的服务沟通时遇到了问题。
音乐正在服务中播放,以startForeground开头,所以它不会被杀死。
我需要通过我的活动与服务进行沟通,以获取曲目名称,图像和更多内容。
我的问题是什么:
我想我需要使用bindService(而不是我当前的startService)启动我的服务,以便活动可以与它通信。
但是,当我这样做时,我的服务在关闭Activity后被杀死。
我怎样才能得到这两个?绑定和前台服务?
谢谢!
没有.bindService
不会开始服务。它将与Service
绑定到service connection
,这样你就可以获得服务的instance
来访问/控制它。
根据您的要求,我希望您将使用MediaPlayer
的实例。你也可以从Activity
然后bind
开始服务。如果service
已经运行onStartCommand()
将被调用,你可以检查MediaPlayer
实例是否为null然后只返回START_STICKY
。
像这样改变你Activity
..
public class MainActivity extends ActionBarActivity {
CustomService customService = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// start the service, even if already running no problem.
startService(new Intent(this, CustomService.class));
// bind to the service.
bindService(new Intent(this,
CustomService.class), mConnection, Context.BIND_AUTO_CREATE);
}
private ServiceConnection mConnection = new ServiceConnection() {
@Override
public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
customService = ((CustomService.LocalBinder) iBinder).getInstance();
// now you have the instance of service.
}
@Override
public void onServiceDisconnected(ComponentName componentName) {
customService = null;
}
};
@Override
protected void onDestroy() {
super.onDestroy();
if (customService != null) {
// Detach the service connection.
unbindService(mConnection);
}
}
}
我和MediaPlayer
service
有类似的应用。如果这种方法对您没有帮助,请告诉我。
除非服务也已启动,否则绑定服务将在所有客户端解除绑定后销毁
关于开始和绑定之间的区别只是看看https://developer.android.com/guide/components/services.html
所以,你必须使用startService
和bindService
创建服务,就像@Libin在他/她的例子中所做的那样。然后,服务将一直运行,直到你使用stopService
或stopSelf
或直到Android决定它需要资源并杀死你。
以上是关于与前台服务android通信的主要内容,如果未能解决你的问题,请参考以下文章
Android 调用组件 w/listener 或让 viewmodel 调用组件与片段通信
Android:(本地可通信的前台远程)Service使用全面介绍