Guest User

Untitled

a guest
Aug 30th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. Intent intent = new Intent (v.getContext(), actHuerta.class); startActivityForResult(intent, 0);
  2. Intent intentx = new Intent ( actCaptura.this, actResumen.class );
  3. String etiquetas = ((EditText)findViewById(R.id.etiqs)).getText().toString();
  4. Toast.makeText(getBaseContext(), etiquetas, Toast.LENGTH_LONG).show();
  5. intentx.putExtra ( "EtiquetasLeidas", etiquetas);
  6. startActivity(intent);
Advertisement
Add Comment
Please, Sign In to add comment