Skip to content

EdwinRikkers/refreshgallery

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Phonegap Plugin Refresh Gallery

I've created this plugin because when you save an image on android device, this image does not appears on gallery. This plugin updates the image gallery.

Usage

You just need to include the following line in the config.xml

<gap:plugin name="cordova-plugin-refresh-gallery" version="1.0.9" source="npm"/>

After that, you invoke the method to refresh the image gallery.

refreshMedia.refresh(path);

Full Example

window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function (fileSystem) {

  var fileTransfer = new FileTransfer();
  var uri = encodeURI("http://www.example.com/image");
  var path = fileSystem.root.toURL() + "appName/example.jpg";

  fileTransfer.download(
    uri,
    path,
    function(entry) {
      refreshMedia.refresh(path); // Refresh the image gallery
    },
    function(error) {
      console.log(error.source);
      console.log(error.target);
      console.log(error.code);
    },
    false,
    {
      headers: {
        "Authorization": "dGVzdHVzZXJuYW1lOnRlc3RwYXNzd29yZA=="
      }
    }
  );

});

Album

About

Phonegap Plugin Refresh Gallery

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 88.3%
  • JavaScript 11.7%