Android 是否可以将其与Dropbox一起使用?

Android 是否可以将其与Dropbox一起使用?,android,universal-image-loader,Android,Universal Image Loader,我正在寻找一种在某种网格视图中显示Dropbox中的缩略图网格的方法 GridView需要可选择,即用户需要能够在网格上选择多个图像 我遇到的另一个问题是浏览文件夹。 根文件夹可以包含多个文件夹和图像。因此网格需要能够显示这些图像以及文件夹。用户需要能够单击文件夹,然后显示该文件夹的内容(图像和文件夹) 在miunte我正在下载缩略图,我想最好是获取缩略图的URL并使用它 目前我正在做这样的事情: // Note that pix is an ArrayList<Bitmap> pi

我正在寻找一种在某种网格视图中显示Dropbox中的缩略图网格的方法

GridView需要可选择,即用户需要能够在网格上选择多个图像

我遇到的另一个问题是浏览文件夹。
根文件夹可以包含多个文件夹和图像。因此网格需要能够显示这些图像以及文件夹。用户需要能够单击文件夹,然后显示该文件夹的内容(图像和文件夹)

在miunte我正在下载缩略图,我想最好是获取缩略图的URL并使用它

目前我正在做这样的事情:

// Note that pix is an ArrayList<Bitmap> pics
 // Populates the gridView with the thumbnails opened earlier
        ImageAdapter adapter = new ImageAdapter(this, pics);
        // Attachs imageAdapter to gridView
        gridView.setAdapter(adapter);
//请注意,pix是一个ArrayList pics
//使用先前打开的缩略图填充gridView
ImageAdapter=新的ImageAdapter(此,pics);
//将imageAdapter附加到gridView
setAdapter(适配器);
使用这个通用图像加载程序对我来说有意义吗?如果是,怎么做? 或者我最好创建一个自定义ListView还是一个自定义GridView


感谢您的帮助。

看起来最好使用带有复选框的自定义listview。我不相信默认情况下会有复选框作为选项