How to integrate Google Drive with Picasso on Android?
问题 I'm writing an app which stores images in Google Drive and I'd like to display a gallery of those ( GridView ). To be more performant (i.e. async) I'd like to integrate this with Picasso . But the Picasso.load(String) is just an alias to load(Uri.parse(path)) , and I don't have a Uri because the images are loaded like this (simplified and with undisclosed utility methods): public static Bitmap getBitmap(DriveId id) { GoogleApiClient client = ApiClientAsyncTask.createConnectedClient(App