这是我的代码Activity
。启动一个Intent,然后是一个Connection,对吗?
hello_service = new Intent(this, HelloService.class);
hello_service_conn = new HelloServiceConnection();
bindService( hello_service, hello_service_conn, Context.BIND_AUTO_CREATE);
但我的问题是……连接内部有什么?
class HelloServiceConnection implements ServiceConnection {
public void onServiceConnected(ComponentName className,IBinder boundService ) {
}
public void onServiceDisconnected(ComponentName className) {
}
};
有人能告诉我我在onServiceConnected和onServiceDisconnected中输入了什么代码吗?
我只想要一个基本的连接,以便我Activity
和Service
可以互相交谈。
编辑:我找到了一个很好的教程,我实际上可以关闭这个问题,除非有人想回答。http://www.androidcompetencycenter.com/2009/01/basics-of-android-part-iii-android-services/