Here I trying to develop paint application based on specification. I used andengine and android both for this application development.
I can able to save user created image and load that particular image into canvas. These both operation work perfect for me. But when I open gallery view then it didn't show latest content of the image.
It shows data when it first time created in gallery view. But when I load that image it show correct image on canvas. I think it was a problem of gallery refresh so that I write following code for that purpose.
pexelMimics.sendBroadcast(new Intent(
Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://"
+ Environment.getExternalStorageDirectory())));
But this code can only able to show new created image into gallery but content update can't get reflected into gallery. I searched other post but I could not able to found useful content.
So my friends please help me to come out of it.