Ver Mensaje Individual
  #35  
Viejo 19/11/13, 17:37:30
Array

[xs_avatar]
cepillo cepillo no está en línea
Usuario poco activo
 
Fecha de registro: ago 2011
Mensajes: 49
Tu operador: Movistar

usando eviroment. no me deja me sale error en la linea intent.putExtra(Intent.EXTRA_STREAM,Uri.parse("Fil e://" + Uri));

CODIGO me estoy volviendo loco x esta chorradita
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
File Uri = Environment.getExternalStorageDirectory();
Bitmap imagen= ((BitmapDrawable)img.getDrawable()).getBitmap();
try {
FileOutputStream fichero = new FileOutputStream(Environment.getExternalStorageDir ectory());
imagen.compress(Bitmap.CompressFormat.JPEG, 90, fichero);
fichero.close();
} catch (Exception e) {
}

intent.putExtra(Intent.EXTRA_STREAM,Uri.parse("Fil e://" + Uri));
intent.setType("Image/jpg");
startActivity(Intent.createChooser(intent,"Share Image" ));
return true;
Responder Con Cita