I'm using Android Data Binding library with Android Studio (2.2.3) and it's awesome! But, as mentioned by Android developers portal https://developer.android.com/topic/libraries/data-binding/index.html and even Android Studio Lint shows a tip to use special syntax for binding listeners in layout files:
android:onClick="@{aViewModel::aClickCallback}"
but Android Studio marks this one as erroneous at once:
Projects are built without problems, but I wonder if there is a way to fix it.