[Android][DataBinding] warning: Application namespace for xxx will be ignored
2019. 6. 12. 16:46ㆍPrograming/Debugging
[Warning]
warning: Application namespace for attribute bind:onInputMethodAction will be ignored
public static void setOnInputMethodActionListener(
^
[Code]
@BindingAdapter("bind:onInputMethodAction")
public static void setOnInputMethodActionListener(
[Problem]
@BindingAdapter("bind:onInputMethodAction") << Caused by wrong format
public static void setOnInputMethodActionListener(
[Solution]
@BindingAdapter("onInputMethodAction")
public static void setOnInputMethodActionListener(
'Programing > Debugging' 카테고리의 다른 글
삼성 인터넷 브라우저 52.231.167.134 (6) | 2019.06.18 |
---|---|
[Android] API 'variant.getPackageLibrary()' is obsolete and has been replaced with 'variant.getPackageLibraryProvider()'. (0) | 2019.06.12 |
[Android] INSTALL_FAILED_CONFLICTING_PROVIDER (0) | 2019.05.23 |
[오라클 오류] 에러코드 정리 (0) | 2019.05.20 |
[Android][tPacketCapture] How to save wireshark log on android? (0) | 2019.05.10 |