i have Note 8 and i want to test my app on my phone. I click my imageview then open gallery and i select photo (photo from Note's camera) then photo is rotating right. but if i select other photo from any website, not problem.
i am sory for my english :
if (requestCode==1 &&resultCode==RESULT_OK &&data!=null){
Uri imageUri = data.getData();
try {
imageBitmap = MediaStore.Images.Media.getBitmap(getContentResolver(),imageUri);
imageViewSignUp.setImageBitmap(imageBitmap);
} catch (IOException e) {
e.printStackTrace();
}
}