Hi guys, I am trying to write an application that downloads pictures from amazon s3 server and presents the pictures as a slideshow on the application. The application will be bundled to a tablet device specifically for this purpose. The device will use wifi connection to check the S3 server for pictures and download them for slideshow. The main problem is making a connection to the s3 server and download the pictures. I have read the documentation of the aws android sdk up and down and still could not figure out how to download the data, i think th simle code of downloading data from th s3 shoul look like this:
AmazonS3 s3 = new AmazonS3Client(AWSCredentials); S3Object object = s3.getObject(bucketName, pictureId); object.getObjectContent(); which seems fairly easy. The thing is I am not sure what to do? Any ideas on how to go about it? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

