Advertisement
corovino

bundle

Feb 9th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. // Obtener el item actual
  2. Post item = items.get(position);
  3. item.getArtist();
  4. Intent intent = new Intent(getApplicationContext(), DetailActivity.class);
  5. intent.putExtra("titulo", item.getTitle());
  6. intent.putExtra("imagen", item.getIm_image2());
  7. intent.putExtra("descrip", item.getSummary());
  8. intent.putExtra("artist", item.getArtist());
  9. intent.putExtra("category", item.getCategory());
  10. intent.putExtra("link", item.getLink());
  11. startActivity(intent);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement