The app is using 1.5 and the device is an HTC Hero from Sprint.
I'm using the following code for saving the images:
- Code: Select all
String response = MediaStore.Images.Media.insertImage(getContentResolver(), pngImage, "My Title", "My Description");
After saving on the simulator I'm able to go into the album and see the saved images. On the device they aren't there until I reboot the phone. Is there a way to get them to show up on the phone without having to reboot first? This will definitely annoy and confuse users.

