Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 3, 2019 22:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/938d70b16b3a6a1babe85dbad089fe88 to your computer and use it in GitHub Desktop.
Save parzibyte/938d70b16b3a6a1babe85dbad089fe88 to your computer and use it in GitHub Desktop.
public void onClick(View view, int position) {
Gasto gasto = gastos.get(position);
if (gasto.getId() < 0) {
Toast.makeText(getContext(), "Ver más", Toast.LENGTH_SHORT).show();
return;
}
//Aquí lo que se hace si es un elemento normal
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment