最も簡単な方法で写真を Picasa にアップロードしたいので、次のようなインテントを使用することを考えていました。
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);
アルバムを作成したり、特定のアルバムに写真を配置したり、写真の名前を変更したりする方法を見つけようとしていますが、これが可能かどうか、またその方法を知っている人はいますか?
ありがとう