배워보자~
보호되어 있는 글입니다.
[Android] FCM Message 사용기 팁※ 기본적인 개념은 구글 Guide 문서 참조 FCM Message 종류는 2가지가 존재함. 알림 메세지 : '디스플레이 메시지'로 간주할 수 있습니다. json format에서 notification 노드가 존재하는 메세지 데이타 메세지 : 클라이언트 앱에서 처리 합니다. son format에서 data 노드가 존재하는 메세지 혹은 notification노드가 없어야 함. 2개의 메세지의 차이점 data message notification message json format data 키만 존재함. notification 키 필수, (data 키 같이 사용가능) son format 예시 {"to" : "[fcm_key]","collapse_key" : "..
[Android] Can't create handler inside thread that has not called Looper.prepare() 해결하기원인 : UI을 컨트롤 하는 메인쓰레드가 아닌 sub쓰레드에서 UI를 변경 시도 할 때 발생한다.해결방법 : Thread와 Handler를 사용하여 해결기본 개념들Thread 란?, Handler 란?[안드로이드] Thread, Handler, Looper를 통한 백그라운드 처리 #20 쓰레드(Thread)와 핸들러(Handler)그 외 관련 지식들 : AsyncTask[안드로이드] AsyncTask란? (개념 및 사용법)[Android] How to Leak a Context:Handler & Inner Classes : 핸들러 사용 시 메모리 릭이 ..