안드로이드/이론
[ 안드로이드 ] Livedata Observer 등록하자 마자 호출되는 경우 or 중복 호출
안드로이드의 Livedata에 Observer를 걸어 사용하던 중 Observer를 등록하자마자 호출이 되어 코드가 실행되는 경우가 있었다. https://stackoverflow.com/questions/50236778/why-livedata-observer-is-being-triggered-twice-for-a-newly-attached-observer Why LiveData observer is being triggered twice for a newly attached observer My understanding on LiveData is that, it will trigger observer on the current state change of data, and not a series of ..