You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to observe on click of items in recycler view. By pattern somebody use the code:
mRecyclerView.addOnItemTouchListener(new RecyclerItemClickListener(getActivity(), new RecyclerItemClickListener.OnItemClickListener() {
@Override
public void onItemClick(View view, int position) {
Log.d("tag","Click on position = " + position);
}
}));
Why RxBinding hasn't the method in RxRecyclerView?
The text was updated successfully, but these errors were encountered:
RxRecyclerView is missing the wrapper for addOnItemTouchListener that would become itemTouches() (maybe?). But the RecyclerItemClickListener is not part of the framework or the support libraries so I think it would't be right to include that behavior into this library.
I need to observe on click of items in recycler view. By pattern somebody use the code:
Why RxBinding hasn't the method in RxRecyclerView?
The text was updated successfully, but these errors were encountered: