Lines Matching refs:exif
175 ExifInterface exif = getExif(image); in hasLatLngData() local
176 if (exif == null) return false; in hasLatLngData()
178 return exif.getLatLong(latlng); in hasLatLngData()
220 ExifInterface exif) { in setLatLngDetails() argument
222 if (exif.getLatLong(latlng)) { in setLatLngDetails()
270 ExifInterface exif = getExif(image); in onShowMapClicked()
272 if (exif != null) { in onShowMapClicked()
274 if (exif.getLatLong(latlng)) { in onShowMapClicked()
316 ExifInterface exif = getExif(image); in showExifInformation() local
317 if (exif == null) { in showExifInformation()
322 String value = exif.getAttribute(ExifInterface.TAG_MAKE); in showExifInformation()
329 value = exif.getAttribute(ExifInterface.TAG_MODEL); in showExifInformation()
336 value = getWhiteBalanceString(exif); in showExifInformation()
343 setLatLngDetails(d, activity, exif); in showExifInformation()
350 private static String getWhiteBalanceString(ExifInterface exif) { in getWhiteBalanceString() argument
351 int whitebalance = exif.getAttributeInt(ExifInterface.TAG_WHITE_BALANCE, -1); in getWhiteBalanceString()