public void onServiceConnected(ComponentName name, IBinder service) {
Log.i("Service connection established","");
// that's how we get the client side of the IPC connection
api = com.oreilly.android.otweet.TweetCollectorApi.Stub.asInterface(service);
try {
api.addListener(collectorListener);
/* Intent i = new Intent(StatusListActivity.this, StatusListActivity.class);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(i);*/
} catch (RemoteException e) {
Log.e("", "Failed to add listener", e);
}
0
A
回答
0
要停止服務,當應用程序停止時,我們需要在onDestroy()
中調用unbindService()
。
編輯:
在你的鏈接有代碼,這
@Override
protected void onDestroy() {
super.onDestroy();
try {
api.removeListener(collectorListener);
unbindService(serviceConnection);
} catch (Throwable t) {
// catch any issues, typical for destroy routines
// even if we failed to destroy something, we need to continue destroying
Log.w(TAG, "Failed to unbind from the service", t);
}
Log.i(TAG, "Activity destroyed");
}
相關問題
- 1. 如何在Twitter應用程序中嵌入Twitter時間線?
- 2. 如何將twitter時間線添加到iphone應用程序?
- 3. 如何刷新WP中重新激活應用程序的日期時間
- 4. 刷新數據的Android應用程序
- 5. 如何使用Android應用程序中的Hashtag過濾twitter主頁時間軸?
- 6. 如何在Twitter應用中嵌入Twitter時間線
- 7. 在AS3 AIR應用程序中獲取Twitter時間線
- 8. Android中的twitter應用程序如何能夠「近乎」實時更新
- 9. 如何刷新選項卡式Android應用程序上的ListView?
- 10. Android應用程序中的Twitter集成
- 11. 如何刷新多線程應用程序中的OAUTH2 BOX令牌
- 12. 當應用程序按下按鈕時自動刷新時間線頁面?
- 13. Twitter應用程序相關的自動刷新功能
- 14. 刷新Android應用程序活動
- 15. 刷新ArrayList Android應用程序
- 16. 如何減少使用線程的android應用程序加載時間?
- 17. android應用程序中的Twitter應用程序
- 18. 創建Twitter時間的Twitter應用程序
- 19. mvc web應用程序中的應用程序變量刷新
- 20. 如何在執行時間更新Android應用程序
- 21. Twitter的應用程序的Android
- 22. Android的Twitter有時不回到我的Android應用程序
- 23. Angular 2實時刷新應用程序
- 24. 如何複製Twitter Android應用程序中的彈出框?
- 25. 如何將Twitter集成到我的Android應用程序中?
- 26. 如何限制在Android應用程序中的時間動作?
- 27. 如何在Cocoa Mac應用程序的twitter和Facebook中更新
- 28. 線程中的android應用程序類
- 29. 在不使用Android應用程序時自動刷新
- 30. 如何增加android應用程序的響應時間?
你的意思是你想要的應用程序停止時停止服務? – Sandy
是的..也想更新推文 – Payal