Guest User

Untitled

a guest
Jan 21st, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. public void RecuperarULR() {
  2. Bundle bundle = getIntent().getExtras();
  3. String contenido = (String) bundle.get("contenido");
  4.  
  5. img = contenido.split("<img alt="" src="");
  6. for (int i = 0; i < img.length; i++) {
  7. if (img[i].contains("http://itvillahermosa.edu.mx/uploads/")) {
  8.  
  9. Toast.makeText(this, img[i], Toast.LENGTH_SHORT).show();
  10.  
  11. }
  12. }
  13. }
Add Comment
Please, Sign In to add comment