일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Fragment에서 Activity의 함수 사용하기
- 구분선
- binding adapter
- 리사이클러뷰
- 테마 아이콘
- Fragment 수동 추가
- espresso
- ui test
- ActivityTestRule
- 생명주기
- 고차함수
- 코딜리티
- viewholder
- fragment
- adapter
- high order function
- 스와이프
- Android
- 안드로이드개발레벨업교과서
- Error:Execution failed for task ':app:mergeDebugResources'
- searchview
- 안드로이드13
- 안드로이드스튜디오
- 코틀린
- recyclerview
- 재사용
- 안드로이드
- LayoutManger
- IntentTestRule
- 뷰변경 감지
- Today
- Total
룬아님의 취중코딩
다이얼로그에 왜 application context를 사용하면 안될까? 본문
https://stackoverflow.com/a/10159345
Toast를 제외하고 다른 UI 구성 요소는 Application 컨텍스트와 함께 작동하지 않습니다. [android 2.1 때 변경]
응용 프로그램 컨텍스트는 응용 프로그램과 관련된 일부 서비스 또는 구성 요소 (예 : 전화 통신 관리자, 위치 관리자 등)가 필요할 때 항상 전달됩니다. UI의 경우 항상 Activity 인 UI 관련 컨텍스트를 전달해야합니다.
ApplicationContext는 시스템과 관련된 기능과 앱 전체의 생명주기와 관련되어 있기 때문에 dialog처럼 해당 activity에 종속되는 뷰는 해당 activity의 context를 사용해야 한다.
Context의 종류
-
View.getContext(): Returns the context the view is currently running in. Usually the currently active Activity.
-
Activity.getApplicationContext(): Returns the context for the entire application (the process all the Activities are running inside of). Use this instead of the current Activity context if you need a context tied to the lifecycle of the entire application, not just the current Activity.
-
ContextWrapper.getBaseContext(): If you need access to a Context from within another context, you use a ContextWrapper. The Context referred to from inside that ContextWrapper is accessed via getBaseContext().
'개발 > 안드로이드 개발' 카테고리의 다른 글
Koin으로 Dialog 사용하기 (0) | 2019.08.17 |
---|---|
Recyclerview의 보여지는 뷰의 index 변화를 알려주는 Listener (1) | 2019.08.13 |
Android RecyclerView 어댑터에서 필터 후 원래 항목 위치를 얻는 방법 (0) | 2019.08.05 |
안드로이드 버튼 리플 효과 적용 (0) | 2019.08.05 |
Only fullscreen opaque activities can request orientation 이슈 (0) | 2019.08.05 |