我正在开发android应用程序。在我的应用程序中,我想在图库视图中显示sd卡文件夹中的图像。我正在使用BaseAdapter。我试着在我的项目中的资源文件夹中显示可绘制文件夹中的图像,效果很好。
我尝试了以下代码:
public class ImageAdapter extends BaseAdapter {
private Context context;
public static Integer[] imageIDs={
R.drawable.sp1,R.drawable.sp2,
R.drawable.sp3,R.drawable.sp4,
R.drawable.sp5,R.drawable.sp6,
R.drawable.sp7,R.drawable.sp8,
R.drawable.sp9
};
public ImageAdapter(Context context){
this.context=context;
}
@Override
public int getCount() {
// TODO Auto-generated method stub
return imageIDs.length;
}
@Override
public Object getItem(int position) {
// TODO Auto-generated method stub
return position;
}
@Override
public long getItemId(int position) {
// TODO Auto-generated method stub
return position;
}
@Override
public View getView(int position, View
convertView, ViewGroup parent) {
// TODO Auto-generated method stub
ImageView image=new ImageView(context);
image.setImageResource(imageIDs[position]);
image.setAdjustViewBounds(true);
image.setLayoutParams(new Gallery.LayoutParams(120,120));
image.setScaleType(ImageView.ScaleType.FIT_CENTER);
return image;
}
现在我想显示sd卡文件夹中的图像,并以图库格式显示它们。
为此,我试图获得阵列中的所有图像,但我不知道如何获得阵列格式的图像。我可以通过以下方式访问sd文件夹中的图像。
File path = new File(Environment.getExternalStorageDirectory()+"/download/sp1.jpg");
如何将它们全部以数组格式显示并在库视图中显示。或者有其他方法可以显示它们而不是数组吗?
需要帮助。。。。非常感谢。