J'essaie d'obtenir la localisation gps des images, mais tout ce que j'obtiens est null/0, j'ai essayé de récupérer d'autres informations exif de différentes images, mais les résultats sont toujours null/0.
public void MarkGeoTagImage(String imagePath)
{
try {
ExifInterface exif = new ExifInterface(imagePath);
Toast.makeText(MainActivity.this, imagePath, Toast.LENGTH_LONG).show();
Toast.makeText(MainActivity.this, exif.getAttribute(ExifInterface.TAG_GPS_LONGITUDE),Toast.LENGTH_LONG).show();
} catch (IOException e) {
e.printStackTrace();
}
}
Le premier toast montre le chemin absolu de l'image comme /storage/sdcard0/etp_images/test.jpg, mais le second toast n'affiche que 0 ou null comme résultats.