Skip to content

Instantly share code, notes, and snippets.

@guuilp
Created December 3, 2016 18:00
Embed
What would you like to do?
private NoticiaAdapter.NoticiaOnClickListener onClickNoticia() {
return new NoticiaAdapter.NoticiaOnClickListener() {
@Override
public void onClickNoticia(View view, int idx) {
Noticia c = noticias.get(idx);
Intent intent = new Intent(getContext(), NoticiaActivity.class);
intent.putExtra("noticia", c);
startActivity(intent);
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment