반응형
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
- ruby
- LG전자
- 영어메일쓰기
- S&P
- Intent
- 화승엔터프라이즈
- 나스닥
- 토익이메일
- 트럼프
- 시황
- toeice-mail
- 국제유가
- 다우산업
- 어학·외국어
- Java
- 주식시황
- 네마녀의날
- e-mailwriting
- 파이썬
- 안드로이드
- dataframe
- android
- englishwriting
- 셀트리온
- 영어메일
- 금리인상
- 사드보복완화
- 무역전쟁
- 다우
- Python
Archives
- Today
- Total
Developer MJ Story
[Android/Intent] Intent Flags Android Service에서 Activity Call 하는 방법 본문
Software/Android
[Android/Intent] Intent Flags Android Service에서 Activity Call 하는 방법
집근처 2014. 6. 9. 10:27반응형
- Activity가 아닌 곳에서 Activity를 Call하기 위해서는 'FLAG_ACTIVITY_NEW_TASK' 이 flag가 필요
- Source Code
Intent intent = new Intent(this, targetActivity.class);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
- FLAG_ACTIVITY_NEW_TASK : 동일한 affinity의 task가 있으면 그곳에 있는 Activity가 실행되고 아니면 새로운 task를 만들어 실행 해라라는 의미의 flag
- service에서 Activity를 call 하는데 이 flag를 사용하는 이유는 service의 affinity에 call 하고 싶은 Activity가 선언되어 있지 않기 때문에 이 flag를 선언하지 않으면 call하고 싶은 Activity를 찾을 수 없기 때문에 에러가 발생
반응형
'Software > Android' 카테고리의 다른 글
[Andorid/Intent] Intent로 Android check box 주소록 call 하고 선택한 주소 return 받기 (1) | 2014.06.09 |
---|---|
[Android/Java] colon(:)을 이용한 Enhanced for loop (0) | 2014.06.09 |
[Android/Thread] runnable()을 이용한 간단한 thread 구현 (0) | 2014.06.09 |
[Android/Intent] 다른 Application의 Activity call 하는 방법 (0) | 2014.06.09 |
[Android/Intent] Intent로 component간 Data 공유 (0) | 2014.06.09 |