我看到下面的編譯器警告建立我的項目時:Android Databinding編譯警告:使用'。'的方法引用已過時
warning: Method references using '.' is deprecated. Instead of 'item.onCardClicked', use 'item::onCardClicked'
我使用Android插件的gradle爲2.1.0。
我的佈局文件如下所示:
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<data>
<variable
name="item"
type="com.example.Card"/>
</data>
<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:onClick="@{item.onCardClicked}"/>
...
</LinearLayout>
</layout>
能有人指出正確的方向來解決此警告?
http://stackoverflow.com/a/37393655/212706 – ktutnik