studio - validar imageview android
"Decodificador-> decodificación devolvió falso" al descargar la imagen y verla en ImageView (1)
Intento usar FlushedInputStream: Android decoder-> decode devolvió false para descargar Bitmap
pero nada cambia, porque uso: BitmapFactory.decodeFile(path_of_my_downloaded_file),
no uso BitmapFactory.decodeStream
Este es mi código de archivo de descarga:
public static boolean downloadFile(String url, String dir, String name){
Log.i("Start Downloading ", "=");
// Create download folder:
File f = new File(dir);
if(!f.exists()){
f.mkdirs();
}
try {
File fTo = new File(dir, name);
URL downloadUrl = new URL(url);
//create the new connection
HttpURLConnection urlConnection = (HttpURLConnection) downloadUrl.openConnection();
//set up some things on the connection
urlConnection.setRequestMethod("GET");
urlConnection.setDoOutput(true);
//and connect!
urlConnection.connect();
FlushedInputStream in = new FlushedInputStream(downloadUrl.openStream());
// in = new FlushedInputStream(in);
byte[] buffer= new byte[4096];
// Write file to toFolder
FileOutputStream os = new FileOutputStream(fTo);
try {
do{
int numread = in.read(buffer);
if (numread <= 0) {
break;
}
os.write(buffer, 0, numread);
}while(true);
} catch (ConnectTimeoutException e) {
e.printStackTrace();
return false;
}
if (os != null) {
os.close();
}
if (in != null) {
in.close();
}
} catch (IOException e) {
Log.e("Error reading file", e.toString());
return false;
}
return true;
}
Y este es mi código para configurar Bitmap en ImageView:
Bitmap bitmap = BitmapFactory.decodeFile(my_file);
mImageView.setImageBitmap(bitmap);
Siempre tengo "decoder->decode returned false"
Nota: Tengo que descargar esta imagen primero.
Este es el problema de la imagen.