radzio / android-data-binding-recyclerview

Using Recyclerview with the new Android Data Binding framework
Apache License 2.0
564 stars 97 forks source link

about inner view click #13

Open coderkisoo opened 8 years ago

coderkisoo commented 8 years ago

I want to click the inner view,and I try to change the moduel.finally i failed.

edvaldeysteinsson commented 8 years ago

you could do this

Set this on the view you want to be clickable

android:onClick="firstNameClickHandler"
android:tag="@{user}" // the viewmodel variable

and then in your activity

public void firstNameClickHandler(View v) {
    UserViewModel userViewModel = (UserViewModel)v.getTag();
}