💻 Computer/Android (7) 썸네일형 리스트형 Type androidx.activity.R is defined multiple times File files under the build folder are generated and should not be edited 오류 나고, 상세에 이런 오류 뜸 Type androidx.activity.R is defined multiple times -> Sdk version도 바꿔보고, 라이브러리 충돌도 확인이 안되었는데 -> Terminal에 gradlew clean 해줬더니 해결됨 Intent에서 Context Intent로 다른 Activity에 정보를 넘길때 괄호 안에 들어가는 형태가 계속 달라지길래 찾아봄. Android Framework에서 Context 종류는 2가지로 나뉨 - Application Context - Activity Context Application Context는 어플 자체의 LifeCycle에 영향을 많이 받음. 반면, Activity Context는 Activity LifeCycle과 함께 작동하여, onDestory()와 함께 사라짐 즉, Activity에 대한 환경 정보들이 Context에 있고, 이 Context에 Intent를 통해 다른 Activity를 띄우면, Acitivy 스택에 쌓이게 됨. Context는 어플이나 객체의 현재 상태 정보 이전 1 2 3 4 다음