I am new to Android and I am struggling to figure out what tools are available to me. I am developing for Android 2.0.1 now, simply because this is what my device is working with.
In particular, I am writing an application that would like to upload images to a Picasa album . I am pretty sure that this is supported; for example, the built-in (Google?) photo viewer has a “share” button with Picasa parameter and even a small example code snippet, including a snippet
[borrowed code! sorry if this is against the rules.]
temp.setComponent(new ComponentName
("com.google.android.apps.uploader",
"com.google.android.apps.uploader.picasa.PicasaUploadActivity"));
startActivityForResult(temp, PICASA_INTENT)
which looks exactly what I want.
But I can’t find the documentation anywhere. I really don't quite understand how to use this type of resource. Inside Eclipse, do I need to include another project com.google.android.apps.uploader? If so, how do I get it? How to enable it? Is there any working code sample I need to take a peek?
user265447
source
share