I'm trying to do something similar (uploading a file using a
webform)...
But I just cannot find anything about MultiPart handling in the API...
ANY hints?
FEZ
On 24 Sep., 16:05, Christine wrote:
> You can use httpclient to access any api.
>
> On Sep 24, 10:00 am, Raman wrote:
>
> > I do not
You can use httpclient to access any api.
On Sep 24, 10:00 am, Raman wrote:
> I do not want to use an existing Activity for Picasa related tasks,
> like showing the Picasa albums and creating new albums. Rather I want
> to develop a new application where it would directly interact with
> Picasa
I do not want to use an existing Activity for Picasa related tasks,
like showing the Picasa albums and creating new albums. Rather I want
to develop a new application where it would directly interact with
Picasa without a third application coming in between.
May be, you would have heard of Picasa
Try this snippet.
If its wat u need go ahead..
otherwise post back with wat u require apart from this.
Intent temp = new Intent(Intent.ACTION_SEND);
temp.setType("image/jpeg");
temp.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
temp.putExtra(Intent.EXTRA_STREAM, imageURI);
temp.setCompon
If you want to get album data and upload pictures to Picasa, you may find
the picasaUploadActivity intent useful. It will use the same authenticated
token as the phone itself and upload to the associated Picasa account. And
you just pass it the content uri for the image.
However the source for the
5 matches
Mail list logo