Re: [android-developers] Re: Picture location on HTC sense phones

2009-11-23 Thread Dianne Hackborn
Or you can just explicitly ask the media scanner to scan the file: http://developer.android.com/reference/android/media/MediaScannerConnection.html On Mon, Nov 23, 2009 at 8:49 AM, Streets Of Boston wrote: > If you do a ContentResolver.insert, instead of a > MediaStore.Images.Media.insertImage,

[android-developers] Re: Picture location on HTC sense phones

2009-11-23 Thread Streets Of Boston
If you do a ContentResolver.insert, instead of a MediaStore.Images.Media.insertImage, you have to provide the fully qualified path to the image-file in the ContentValues as well: // fullyQualifiedPathName is the absolute/canonical path-name to the JPEG file. values.put(MediaStore.Images.Medi

[android-developers] Re: Picture location on HTC sense phones

2009-11-22 Thread Derek
Agree we are seeing the same thing. Haven't found any solution yet. In Sense UI seems like HTC wrote their own camera app that is listening to the same intent as the default Android camera but not conforming to the same interface contract as the Android code. Anyone else find a fix to this? On