我正在开发一个android应用程序,其中在进行一些编辑后将图像保存在指定的文件夹中.现在我想在我的活动中显示所有这些存储的图像.我可以通过指定特定的名称来显示特定的图像.但是我想一起显示所有图像.
我正在使用以下代码显示单个图像……
File myDir=new File("/sdcard/MyCollection");
myDir.mkdirs();
try {
File f=new File(myDir, "My Image name.jpg");
Bitmap b = BitmapFactory.decodeStream(new FileInputStream(f));
ImageView img=(ImageView)findViewById(R.id.imageView);
img.setImageBitmap(b);
}
catch (FileNotFoundException e)
{
e.printStackTrace();
}
解决方法:
如果我遵循您的问题,则可以检索带有.jpg扩展名的文件列表,在列表上运行循环并在imageview中显示.
File root = new File("/sdcard/MyCollection");
final String files[] = root.list(imageFilter);
FilenameFilter imageFilter = new FilenameFilter() {
File f;
public boolean accept(File dir, String name) {
if(name.endsWith(".jpg")) {
return true;
}
f = new File(dir.getAbsolutePath()+"/"+name);
return f.isDirectory();
}
};
文件将返回文件数组.您可以在其上循环.