這是我的Activity
中的代碼。啓動一個意圖,然後一個連接,對不對?如何在Android中綁定此服務?
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/
鏈接到這篇文章不可用,但它可以在: http://www.mongrel-phones.com.au/default/how_to_make_a_local_service_and_bind_to_it_in_android – 2013-07-26 18:45:54
給現在鏈接已經死了 – PKTomar 2014-11-04 12:35:20