I use below code to get the file pathof image in sd card.
File[] f = (Environment.getExternalStorageDirectory()).listFiles();
int i;
for(i = 0; i < f.length; i++) {
if(f[i].isFile()) {
if(isPhoto(f[i].getName())) {
Filepath.add(f[i].getAbsolutePath());
}
}
else {
//recursive
}
}
I want to get the path of the thumbnail of image by know original image path.
How to do it?
You can make your own thumbnail image: