일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 번역
- 프래그먼트
- javascript
- it
- php
- caddy
- 한글
- unity
- mariadb
- 개발자
- C lanuage
- ubuntu
- android
- 구글
- java
- error
- 컴퓨터과학총론
- C
- 안드로이드
- 개발
- Portfolio
- 자바
- MySQL
- 해석
- server
- techEmpower
- NGINX
- centOS7
- H2O
- kakao
- Today
- Total
개발모음집
한 액티비티에서 하나의 서비스를 언바인딩하고 다시 바인딩하는 방법 (binding again after service unbinding) 본문
한 액티비티에서 하나의 서비스를 언바인딩하고 다시 바인딩하는 방법 (binding again after service unbinding)
void 2018. 4. 20. 09:00onDestory에서 unbinding 해주는 것뿐만 아니라 stopService를 해줘야 한다.
그리고 onCreate할 때 bindingService뿐만 아니라 startService를 해줘야 한다.
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
serviceIntent = new Intent(this, ChatService.class);
startService(serviceIntent);Intent intent = new Intent(ChatRoomActivity.this, ChatService.class);
bindService(intent, mConnection, Context.BIND_AUTO_CREATE);}
@Override
protected void onDestroy() {
unbindService(mConnection);
stopService(serviceIntent);
super.onDestroy();
}
It's actually possible to do both: bind to a Service and explicitly start and stop it. Binding to a service is particularly useful only if you need to share data from the Service to the Activity/other Context it is bound to. It sounds like for your needs, you want to use
startService()
andstopService()
to control the lifecycle of your Service. If you still need to pass data back, then you can alsobindService()
after creating it with thestartService()
method.
참고 : stackOverflow
'Android' 카테고리의 다른 글
android clustering (0) | 2018.04.21 |
---|---|
android picture clustering (0) | 2018.04.21 |
String을 split할 때 무조건 한글자씩 split되는 에러 (1) | 2018.04.17 |
Android, Google Chart Api를 이용한 QR code 생성 및 xzing을 이용한 QR코드 스캐너 만들기 (0) | 2018.03.28 |
Android Studio에서 bitbucket 사용하기 (0) | 2018.03.23 |