Back to project page rgb-tool.
The source code is released under:
Apache License
If you think the Android project rgb-tool listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.fastebro.androidrgbtool.utils; //from w w w . java 2 s . co m import android.os.Environment; import java.io.File; /** * Created by danielealtomare on 05/03/14. */ public class BaseAlbumDirFactory extends AlbumStorageDirFactory { @Override public File getAlbumStorageDir(String albumName) { return new File(Environment.getExternalStorageDirectory() + "/" + albumName); } }