Skip to content

Instantly share code, notes, and snippets.

View robertoallende's full-sized avatar

Roberto Allende robertoallende

View GitHub Profile
@riyazMuhammad
riyazMuhammad / CustomItemClickListener.java
Last active December 30, 2020 15:10
Easy Implementation of RecyclerView custom onItemClickListener
public interface CustomItemClickListener {
public void onItemClick(View v, int position);
}