When I am calling this function there is no image in image view bitmapFactory.decodefile(filename) showing null .. please help for this.
bitmapFactory.decodefile(filename)
Here is my cod
Why are you doing this String imageInSD = "/sdcard/UserImages/"+userImageName;
I think If you get a .png file is present then just,
Bitmap bitmap = BitmapFactory.decodeFile(file.getAbsolutePath());
NOTE: Also check you have a Android supported image file is present in that location..