null check
-
Null Coalescing Operator(with. databinding)Android 2022. 1. 5. 12:21
android databinding 에서 string에 대한 null 처리시 일반적으로 삼항연산자(ternary operator)로 사용해왔지만 찾아보니 Null 병합 연산자(Null Coalescing Operator)자가 있어서 해당 연산자로 변경하니 코드길이가 줄었습니다. 문법은 아래와 같습니다. 삼항연산자(ternary operator) android:text='@{item.title != null ? user.title : ""}' Null 병합 연산자(Null Coalescing Operator) android:text='@{item.title ?? ""}' [참고링크] https://stackoverflow.com/questions/36227194/data-binding-set-propert..