Gabriela, parte de nuestro equipo de trabajo, nos ha hecho el favor de crear este tutorial porque controla muy bien dicho tema.
Solución:
Deberías poder usar BitmapFactory
:
File mSaveBit; // Your image file
String filePath = mSaveBit.getPath();
Bitmap bitmap = BitmapFactory.decodeFile(filePath);
mImageView.setImageBitmap(bitmap);
-
Definir archivo
String fileName = "/myImage.jpg"; File file = new File(fileName);
-
obtener mapa de bits de la imagen
Bitmap bitmap = BitmapFactory.decodeFile(file.getAbsolutePath());
-
Establecer mapa de bits en ImageView
myImageView.setImageBitmap(bitmap);
Recuerda dar difusión a esta noticia si lograste el éxito.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)