Skip to content

Instantly share code, notes, and snippets.

@alexjlockwood
Created June 7, 2012 22:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexjlockwood/2892102 to your computer and use it in GitHub Desktop.
Save alexjlockwood/2892102 to your computer and use it in GitHub Desktop.
public class FroyoAlbumDirFactory extends AlbumStorageDirFactory {
@Override
public File getAlbumStorageDir(String albumName) {
return new File(
Environment.getExternalStoragePublicDirectory(
Environment.DIRECTORY_PICTURES
),
albumName
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment