[android-developers] Re: Picasa intent return code

2009-09-24 Thread Sujay Krishna Suresh
On Thu, Sep 24, 2009 at 8:15 PM, Zuli paolo.zuli...@gmail.com wrote:


 Hi,
 I use the standard Picasa upload activity in my application to send
 images to the user Picasa account, but everytime the Picasa activity
 returns in my onActivityResult function the return code is
 RESULT_CANCELED, no matter if I cancel the upload, press the back
 button or correctly upload the image, always RESULT_CANCELED,
 can someone confirm this?

s it'd always return only RESULT_CANCELED.
bec it'll start a service n go off.

 I need to check if the user correctly started to upload the image...

Jus either use the ActivityManager's methods to get the no.of running
services/activities.(this shd take a lot of time to research).
Otherwise U can Read the logs n find out exactly wats happenin in the bg.
For this u'll need to spawn a Process by invoking
Runtime.getRuntime().exec(logcat);
Use its inputstream to read the data. U could also filter the logs based on
the Tag used by the Picasa app.
For this u'll hv to add a uses-permission READ_LOGS.

Thats all i got. :)
Good luck...



 //Starting the intent
 Intent temp=new Intent(Intent.ACTION_SEND);
 temp.setType(image/jpeg);
 temp.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
 temp.putExtra(Intent.EXTRA_STREAM, mImageUri);
 temp.setComponent(new ComponentName
 (com.google.android.apps.uploader,
 com.google.android.apps.uploader.picasa.PicasaUploadActivity));
 startActivityForResult(temp, PICASA_INTENT)


 //onActivityResult
 case PICASA_INTENT:
   //resultCode is always RESULT_CANCELED
   break;

 



-- 
Regards,
Sujay
Marie von 
Ebner-Eschenbachhttp://www.brainyquote.com/quotes/authors/m/marie_von_ebnereschenbac.html
- Even a stopped clock is right twice a day.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: picasa

2009-07-10 Thread Wouter

Hey,

Is it possible to send me some code from Twitli to upload picture! I
can use it too in my application!

Thank you,

Wouter

On Jul 8, 12:04 am, Christine christine.kar...@gmail.com wrote:
 Sure. This is the best location to 
 start:http://code.google.com/apis/picasaweb/developers_guide_protocol.html

 it's an API like any other, which allows you to upload pictures,
 create albums, anything. Authentication is like in any Google app, you
 will need an API key. I can send you sample code that's in Twitli, if
 you like. Twitli uploads pictures to Picasa.

 On Jun 22, 3:27 pm, RS rajeshs...@gmail.com wrote:

  Is it possible to upload/download files (photos) from android to
  Picasa using our own apps.
  Is the content provider detail documented somewhere. Any API hint?
  Or is it just a closed component that can't be used outside google?

  Thanks
  RS


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: picasa

2009-07-10 Thread Sujay Krishna Suresh
This is the src...
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.setComponent(new ComponentName(
  com.google.android.apps.uploader,
  com.google.android.apps.uploader.picasa.PicasaUploadActivity));
  startActivityForResult(temp, 0);
since i did this long time ago, i sont remember the exact permissions
required...
uses-permission android:name=android.
permission.GET_ACCOUNTS/uses-permission
uses-permission
android:name=com.google.android.googleapps.permission.GOOGLE_AUTH/uses-permission
but its either both or one of the above


On Fri, Jul 10, 2009 at 2:25 PM, Wouter wouterg...@gmail.com wrote:


 Hey,

 Is it possible to send me some code from Twitli to upload picture! I
 can use it too in my application!

 Thank you,

 Wouter

 On Jul 8, 12:04 am, Christine christine.kar...@gmail.com wrote:
  Sure. This is the best location to start:
 http://code.google.com/apis/picasaweb/developers_guide_protocol.html
 
  it's an API like any other, which allows you to upload pictures,
  create albums, anything. Authentication is like in any Google app, you
  will need an API key. I can send you sample code that's in Twitli, if
  you like. Twitli uploads pictures to Picasa.
 
  On Jun 22, 3:27 pm, RS rajeshs...@gmail.com wrote:
 
   Is it possible to upload/download files (photos) from android to
   Picasa using our own apps.
   Is the content provider detail documented somewhere. Any API hint?
   Or is it just a closed component that can't be used outside google?
 
   Thanks
   RS
 
 
 



-- 
Regards,
Sujay
Jack Benny http://www.brainyquote.com/quotes/authors/j/jack_benny.html  -
I don't deserve this award, but I have arthritis and I don't deserve that
either.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: picasa

2009-07-10 Thread Wouter

I think this code is not the code from the Twitli app. Would be nice
if you could share it with us!

On Jul 10, 11:41 am, Sujay Krishna Suresh sujay.coold...@gmail.com
wrote:
 This is the src...
 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.setComponent(new ComponentName(
   com.google.android.apps.uploader,
   com.google.android.apps.uploader.picasa.PicasaUploadActivity));
   startActivityForResult(temp, 0);
 since i did this long time ago, i sont remember the exact permissions
 required...
 uses-permission android:name=android.
 permission.GET_ACCOUNTS/uses-permission
 uses-permission
 android:name=com.google.android.googleapps.permission.GOOGLE_AUTH/uses-permission
 but its either both or one of the above



 On Fri, Jul 10, 2009 at 2:25 PM, Wouter wouterg...@gmail.com wrote:

  Hey,

  Is it possible to send me some code from Twitli to upload picture! I
  can use it too in my application!

  Thank you,

  Wouter

  On Jul 8, 12:04 am, Christine christine.kar...@gmail.com wrote:
   Sure. This is the best location to start:
 http://code.google.com/apis/picasaweb/developers_guide_protocol.html

   it's an API like any other, which allows you to upload pictures,
   create albums, anything. Authentication is like in any Google app, you
   will need an API key. I can send you sample code that's in Twitli, if
   you like. Twitli uploads pictures to Picasa.

   On Jun 22, 3:27 pm, RS rajeshs...@gmail.com wrote:

Is it possible to upload/download files (photos) from android to
Picasa using our own apps.
Is the content provider detail documented somewhere. Any API hint?
Or is it just a closed component that can't be used outside google?

Thanks
RS

 --
 Regards,
 Sujay
 Jack Benny http://www.brainyquote.com/quotes/authors/j/jack_benny.html  -
 I don't deserve this award, but I have arthritis and I don't deserve that
 either.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: picasa

2009-07-07 Thread tyy

I did, but it is a error: android.content.ActivityNotFoundException:
Unable to find explicit activity class
{com.google.android.apps.uploader/
com.google.android.apps.uploader.picasa.PicasaUploadActivity}; have
you declared this activity in your AndroidManifest.xml?  how to
resolve?
i add the  activity
android:name=com.google.android.apps.uploader.picasa.PicasaUploadActivity /
  in manifest.xml  but they say it doesn't exist.  if i should import
some package? thanks

On Jun 22, 11:07 pm, RS rajeshs...@gmail.com wrote:
 Thanks a lot Sujay.. shall explore the rest. .. and if i find anything
 useful, shall post back.
 Regards,
 RS

 On Jun 22, 3:50 pm, Sujay Krishna Suresh sujay.coold...@gmail.com
 wrote:

  On Mon, Jun 22, 2009 at 7:32 PM, RS rajeshs...@gmail.com wrote:

   Sure sujay some sample code would be very helpful.

  //src here...
  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.setComponent(new ComponentName(
    com.google.android.apps.uploader,
    com.google.android.apps.uploader.picasa.PicasaUploadActivity));
    startActivityForResult(temp, 0);
  since i did this long time ago, i sont remember the exact permissions
  required...
  uses-permission
  android:name=android.permission.GET_ACCOUNTS/uses-permission
  uses-permission
  android:name=com.google.android.googleapps.permission.GOOGLE_AUTH/uses-permission
  but its either both or one of the above

    - I don't mind uploading it to any user's account .. would it still
   be accessible from other users' accounts?

  provided the photo is uploaded to a public album.

    - Does downloading again need a login .. do you have any sample code
   for that?

  downloading actually opens the browser.. i didn't want that... so i'm still
  trying to find a workaround...

    - After uploading would it return an URL for my app to use .. for
   downloading or emailing to others?

   U'll hv 2 explore to get it... but as far as i no, u can get the token
  id...

    - And is there a possibility of tagging the photos?

  Commenting is very much possible... n geotagging is automatically done if u
  r using the in-built camera app...

   Thanks,
   -RS

   On Jun 22, 2:32 pm, Sujay Krishna Suresh sujay.coold...@gmail.com
   wrote:
I havent found any docs, but u can make use of the built-in picasa app
   (if u
r workin in 1.5) to upload ur photos to picasa web albums, but one
limitation is that u dont hv the control of signing in and signing 
out...
   it
uses the google account registered with the phone curently... if ur
interested i can give u sm sample codes...

On Mon, Jun 22, 2009 at 6:57 PM, RS rajeshs...@gmail.com wrote:

 Is it possible to upload/download files (photos) from android to
 Picasa using our own apps.
 Is the content provider detail documented somewhere. Any API hint?
 Or is it just a closed component that can't be used outside google?

 Thanks
 RS

--
Regards,
Sujay
Laurence J. Peter
  http://www.brainyquote.com/quotes/authors/l/laurence_j_peter.html
- If two wrongs don't make a right, try three.

  --
  Regards,
  Sujay
  Casey 
  Stengelhttp://www.brainyquote.com/quotes/authors/c/casey_stengel.html
  - All right everyone, line up alphabetically according to your
  height.



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: picasa

2009-07-07 Thread tyy

null point exception occured
Caused by: java.lang.NullPointerException
at android.content.ContentResolver.acquireProvider
(ContentResolver.java:571)
at android.content.ContentResolver.query(ContentResolver.java:144)
at
com.google.android.apps.uploader.common.UploadActivity.getFileProperties
(UploadActivity.java:264)
at com.google.android.apps.uploader.common.UploadActivity.onCreate
(UploadActivity.java:74)
at
com.google.android.apps.uploader.picasa.PicasaUploadActivity.onCreate
(PicasaUploadActivity.java:66)
at android.app.Instrumentation.callActivityOnCreate
(Instrumentation.java:1123)
at android.app.ActivityThread.performLaunchActivity
(ActivityThread.java:2231)

please help me

On Jun 22, 11:07 pm, RS rajeshs...@gmail.com wrote:
 Thanks a lot Sujay.. shall explore the rest. .. and if i find anything
 useful, shall post back.
 Regards,
 RS

 On Jun 22, 3:50 pm, Sujay Krishna Suresh sujay.coold...@gmail.com
 wrote:

  On Mon, Jun 22, 2009 at 7:32 PM, RS rajeshs...@gmail.com wrote:

   Sure sujay some sample code would be very helpful.

  //src here...
  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.setComponent(new ComponentName(
    com.google.android.apps.uploader,
    com.google.android.apps.uploader.picasa.PicasaUploadActivity));
    startActivityForResult(temp, 0);
  since i did this long time ago, i sont remember the exact permissions
  required...
  uses-permission
  android:name=android.permission.GET_ACCOUNTS/uses-permission
  uses-permission
  android:name=com.google.android.googleapps.permission.GOOGLE_AUTH/uses-permission
  but its either both or one of the above

    - I don't mind uploading it to any user's account .. would it still
   be accessible from other users' accounts?

  provided the photo is uploaded to a public album.

    - Does downloading again need a login .. do you have any sample code
   for that?

  downloading actually opens the browser.. i didn't want that... so i'm still
  trying to find a workaround...

    - After uploading would it return an URL for my app to use .. for
   downloading or emailing to others?

   U'll hv 2 explore to get it... but as far as i no, u can get the token
  id...

    - And is there a possibility of tagging the photos?

  Commenting is very much possible... n geotagging is automatically done if u
  r using the in-built camera app...

   Thanks,
   -RS

   On Jun 22, 2:32 pm, Sujay Krishna Suresh sujay.coold...@gmail.com
   wrote:
I havent found any docs, but u can make use of the built-in picasa app
   (if u
r workin in 1.5) to upload ur photos to picasa web albums, but one
limitation is that u dont hv the control of signing in and signing 
out...
   it
uses the google account registered with the phone curently... if ur
interested i can give u sm sample codes...

On Mon, Jun 22, 2009 at 6:57 PM, RS rajeshs...@gmail.com wrote:

 Is it possible to upload/download files (photos) from android to
 Picasa using our own apps.
 Is the content provider detail documented somewhere. Any API hint?
 Or is it just a closed component that can't be used outside google?

 Thanks
 RS

--
Regards,
Sujay
Laurence J. Peter
  http://www.brainyquote.com/quotes/authors/l/laurence_j_peter.html
- If two wrongs don't make a right, try three.

  --
  Regards,
  Sujay
  Casey 
  Stengelhttp://www.brainyquote.com/quotes/authors/c/casey_stengel.html
  - All right everyone, line up alphabetically according to your
  height.



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: picasa

2009-07-07 Thread Christine

Sure. This is the best location to start:
http://code.google.com/apis/picasaweb/developers_guide_protocol.html

it's an API like any other, which allows you to upload pictures,
create albums, anything. Authentication is like in any Google app, you
will need an API key. I can send you sample code that's in Twitli, if
you like. Twitli uploads pictures to Picasa.



On Jun 22, 3:27 pm, RS rajeshs...@gmail.com wrote:
 Is it possible to upload/download files (photos) from android to
 Picasa using our own apps.
 Is the content provider detail documented somewhere. Any API hint?
 Or is it just a closed component that can't be used outside google?

 Thanks
 RS
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: picasa

2009-06-22 Thread Sujay Krishna Suresh
I havent found any docs, but u can make use of the built-in picasa app (if u
r workin in 1.5) to upload ur photos to picasa web albums, but one
limitation is that u dont hv the control of signing in and signing out... it
uses the google account registered with the phone curently... if ur
interested i can give u sm sample codes...


On Mon, Jun 22, 2009 at 6:57 PM, RS rajeshs...@gmail.com wrote:


 Is it possible to upload/download files (photos) from android to
 Picasa using our own apps.
 Is the content provider detail documented somewhere. Any API hint?
 Or is it just a closed component that can't be used outside google?

 Thanks
 RS
 



-- 
Regards,
Sujay
Laurence J. 
Peterhttp://www.brainyquote.com/quotes/authors/l/laurence_j_peter.html
- If two wrongs don't make a right, try three.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: picasa

2009-06-22 Thread RS

Sure sujay some sample code would be very helpful.

 - I don't mind uploading it to any user's account .. would it still
be accessible from other users' accounts?
 - Does downloading again need a login .. do you have any sample code
for that?
 - After uploading would it return an URL for my app to use .. for
downloading or emailing to others?

 - And is there a possibility of tagging the photos?

Thanks,
-RS

On Jun 22, 2:32 pm, Sujay Krishna Suresh sujay.coold...@gmail.com
wrote:
 I havent found any docs, but u can make use of the built-in picasa app (if u
 r workin in 1.5) to upload ur photos to picasa web albums, but one
 limitation is that u dont hv the control of signing in and signing out... it
 uses the google account registered with the phone curently... if ur
 interested i can give u sm sample codes...

 On Mon, Jun 22, 2009 at 6:57 PM, RS rajeshs...@gmail.com wrote:

  Is it possible to upload/download files (photos) from android to
  Picasa using our own apps.
  Is the content provider detail documented somewhere. Any API hint?
  Or is it just a closed component that can't be used outside google?

  Thanks
  RS

 --
 Regards,
 Sujay
 Laurence J. 
 Peterhttp://www.brainyquote.com/quotes/authors/l/laurence_j_peter.html
 - If two wrongs don't make a right, try three.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: picasa

2009-06-22 Thread Sujay Krishna Suresh
On Mon, Jun 22, 2009 at 7:32 PM, RS rajeshs...@gmail.com wrote:


 Sure sujay some sample code would be very helpful.

//src here...
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.setComponent(new ComponentName(
  com.google.android.apps.uploader,
  com.google.android.apps.uploader.picasa.PicasaUploadActivity));
  startActivityForResult(temp, 0);
since i did this long time ago, i sont remember the exact permissions
required...
uses-permission
android:name=android.permission.GET_ACCOUNTS/uses-permission
uses-permission
android:name=com.google.android.googleapps.permission.GOOGLE_AUTH/uses-permission
but its either both or one of the above


  - I don't mind uploading it to any user's account .. would it still
 be accessible from other users' accounts?

provided the photo is uploaded to a public album.


  - Does downloading again need a login .. do you have any sample code
 for that?

downloading actually opens the browser.. i didn't want that... so i'm still
trying to find a workaround...


  - After uploading would it return an URL for my app to use .. for
 downloading or emailing to others?

 U'll hv 2 explore to get it... but as far as i no, u can get the token
id...


  - And is there a possibility of tagging the photos?

Commenting is very much possible... n geotagging is automatically done if u
r using the in-built camera app...



 Thanks,
 -RS

 On Jun 22, 2:32 pm, Sujay Krishna Suresh sujay.coold...@gmail.com
 wrote:
  I havent found any docs, but u can make use of the built-in picasa app
 (if u
  r workin in 1.5) to upload ur photos to picasa web albums, but one
  limitation is that u dont hv the control of signing in and signing out...
 it
  uses the google account registered with the phone curently... if ur
  interested i can give u sm sample codes...
 
  On Mon, Jun 22, 2009 at 6:57 PM, RS rajeshs...@gmail.com wrote:
 
   Is it possible to upload/download files (photos) from android to
   Picasa using our own apps.
   Is the content provider detail documented somewhere. Any API hint?
   Or is it just a closed component that can't be used outside google?
 
   Thanks
   RS
 
  --
  Regards,
  Sujay
  Laurence J. Peter
 http://www.brainyquote.com/quotes/authors/l/laurence_j_peter.html
  - If two wrongs don't make a right, try three.
 



-- 
Regards,
Sujay
Casey Stengelhttp://www.brainyquote.com/quotes/authors/c/casey_stengel.html
- All right everyone, line up alphabetically according to your
height.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: picasa

2009-06-22 Thread RS

Thanks a lot Sujay.. shall explore the rest. .. and if i find anything
useful, shall post back.
Regards,
RS

On Jun 22, 3:50 pm, Sujay Krishna Suresh sujay.coold...@gmail.com
wrote:
 On Mon, Jun 22, 2009 at 7:32 PM, RS rajeshs...@gmail.com wrote:

  Sure sujay some sample code would be very helpful.

 //src here...
 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.setComponent(new ComponentName(
   com.google.android.apps.uploader,
   com.google.android.apps.uploader.picasa.PicasaUploadActivity));
   startActivityForResult(temp, 0);
 since i did this long time ago, i sont remember the exact permissions
 required...
 uses-permission
 android:name=android.permission.GET_ACCOUNTS/uses-permission
 uses-permission
 android:name=com.google.android.googleapps.permission.GOOGLE_AUTH/uses-permission
 but its either both or one of the above



   - I don't mind uploading it to any user's account .. would it still
  be accessible from other users' accounts?

 provided the photo is uploaded to a public album.



   - Does downloading again need a login .. do you have any sample code
  for that?

 downloading actually opens the browser.. i didn't want that... so i'm still
 trying to find a workaround...



   - After uploading would it return an URL for my app to use .. for
  downloading or emailing to others?

  U'll hv 2 explore to get it... but as far as i no, u can get the token
 id...



   - And is there a possibility of tagging the photos?

 Commenting is very much possible... n geotagging is automatically done if u
 r using the in-built camera app...





  Thanks,
  -RS

  On Jun 22, 2:32 pm, Sujay Krishna Suresh sujay.coold...@gmail.com
  wrote:
   I havent found any docs, but u can make use of the built-in picasa app
  (if u
   r workin in 1.5) to upload ur photos to picasa web albums, but one
   limitation is that u dont hv the control of signing in and signing out...
  it
   uses the google account registered with the phone curently... if ur
   interested i can give u sm sample codes...

   On Mon, Jun 22, 2009 at 6:57 PM, RS rajeshs...@gmail.com wrote:

Is it possible to upload/download files (photos) from android to
Picasa using our own apps.
Is the content provider detail documented somewhere. Any API hint?
Or is it just a closed component that can't be used outside google?

Thanks
RS

   --
   Regards,
   Sujay
   Laurence J. Peter
 http://www.brainyquote.com/quotes/authors/l/laurence_j_peter.html
   - If two wrongs don't make a right, try three.

 --
 Regards,
 Sujay
 Casey Stengelhttp://www.brainyquote.com/quotes/authors/c/casey_stengel.html
 - All right everyone, line up alphabetically according to your
 height.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: picasa application for android

2009-06-07 Thread Sujay Krishna Suresh
wats ur requirement? if u jus need to no how to ue the in-built picasa
app... then i can help... jus lemme no...

On Mon, Jun 8, 2009 at 10:51 AM, Arun achoudhary2...@gmail.com wrote:


 Hi

 I have a specific requirement to design a application for picasa
 or a brouser short cut for the same.
 If any one have any pointers Please do let me know


 Arun
 



-- 
Regards,
Sujay
Dan Quayle http://www.brainyquote.com/quotes/authors/d/dan_quayle.html  -
This President is going to lead us out of this recovery.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Picasa Implementation

2008-12-19 Thread john oakley



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Picasa Implementation

2008-12-15 Thread Chris B.

Wow I ask and one day later they release an app.  I should try this
more often.

On Dec 14, 6:00 pm, Chris chrismbell...@gmail.com wrote:
 I think in future updates there should be an option to automatically
 sync all photos with Picasa online.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Picasa Implementation

2008-12-15 Thread Xavier Mathews

They released an app for picasa?

On 12/15/2008, Chris B. chrismbell...@gmail.com wrote:

 Wow I ask and one day later they release an app.  I should try this
 more often.

 On Dec 14, 6:00 pm, Chris chrismbell...@gmail.com wrote:
 I think in future updates there should be an option to automatically
 sync all photos with Picasa online.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Picasa Implementation

2008-12-15 Thread Wesley
m.google.com

got android one...


wesley.

On Tue, Dec 16, 2008 at 12:53 PM, Xavier Mathews xavieruni...@gmail.comwrote:


 They released an app for picasa?

 On 12/15/2008, Chris B. chrismbell...@gmail.com wrote:
 
  Wow I ask and one day later they release an app.  I should try this
  more often.
 
  On Dec 14, 6:00 pm, Chris chrismbell...@gmail.com wrote:
  I think in future updates there should be an option to automatically
  sync all photos with Picasa online.
  
 


 --
 Xavier A. Mathews
 Student/Browser Specialist/Developer/Web-Master
 Client Based Tech Support Specialist
 Hazel Crest Illinois
 xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
 Fear of a name, only increases fear of the thing itself.

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Picasa Implementation

2008-12-15 Thread Xavier Mathews

Yea but that m.google mobile realease online has always been out i use
it on my psp.

On 12/15/2008, Wesley sit06...@gmail.com wrote:
 m.google.com

 got android one...


 wesley.

 On Tue, Dec 16, 2008 at 12:53 PM, Xavier Mathews
 xavieruni...@gmail.comwrote:


 They released an app for picasa?

 On 12/15/2008, Chris B. chrismbell...@gmail.com wrote:
 
  Wow I ask and one day later they release an app.  I should try this
  more often.
 
  On Dec 14, 6:00 pm, Chris chrismbell...@gmail.com wrote:
  I think in future updates there should be an option to automatically
  sync all photos with Picasa online.
  
 


 --
 Xavier A. Mathews
 Student/Browser Specialist/Developer/Web-Master
 Client Based Tech Support Specialist
 Hazel Crest Illinois
 xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
 Fear of a name, only increases fear of the thing itself.

 


 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---