redundant sam constructor observer1 Android Kotlin redundant sam constructor observer push 하려던 중에 Lint를 확인하니 redundant sam constructor라는 경고 표시가 되어있어서 확인해보았다. redundant sam constructor: 옵저버에 나온 경고표시였다. SAM : 인터페이스에 구현된 함수가 1개일 경우에는 생략가능하다! 알고보니까 Observer는 단일 함수를 구현하는 인터페이스였다. 회색으로 표시된 Observer를 제거했다./** * A simple callback that can receive from [LiveData]. * * @see LiveData LiveData - for a usage description.*/fun interface Observer { /** * Called when the data is changed.. 2024. 6. 1. 이전 1 다음