Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Replaygain
- Dagger2란
- BlockingQueue Capacity
- Service관리
- lufs
- ArrayMap
- 네트워크 디버깅
- java callstack
- Service 팁
- convert Intent to string
- enum performance
- gitignore작성법
- android enum
- gitignore
- RxJava 스터디
- HashMap vs ArrayMap
- Intent String 변환
- 음량표준화
- so파일 동적로딩
- convert string to intent
- callstack 출력
- android network
- 오픈소스라이선스
- APK 동적로딩
- MediaDataSource
- corePoolSize
- RxJava Programming
- APK로딩
- print callstack
- mitmproxy
Archives
- Today
- Total
목록Service관리 (1)
일상&개발 로그
[PerformancePatterns] Service 올바르게 사용하기
1. 서비스는 UIThread에서 동작하기 때문에 서비스 작업때문에 프레임 누락이 발생할 수 있다. 2. 서비스를 되도록이면 쓰지마라. GCM이나 BroadcastReceiver를 이용해서 업데이트하던가 아니면 IntentService, HandlerThread, AsyncTaskLoader를 사용해라 3. Service에는 StartedService와 BoundService가 있다.# StartedService는 startService-stopService(or stopSelf)로 이루어졌으며 종료시키기 전까지 계속 살아남아 리소스를 잡아먹는다.# BoundService는 unbind되거나 종료시키기 전까지 리소스를 잡아먹는다.# 두 가지 서비스를 섞어쓰면, unbindService()를 호출해도 st..
개발/안드로이드 개발
2017. 5. 18. 20:00