0

こんにちは、グーグルプラスでテキスト付きの画像を共有したいのですが、今は例と詳細のソースが見つからないので、助けてください...ありがとう

File tmpFile = new File("/path/to/image");
final String photoUri = MediaStore.Images.Media.insertImage(
     getContentResolver(), tmpFile.getAbsolutePath(), null, null);

Intent shareIntent = ShareCompat.IntentBuilder.from(this)
     .setText("Hello from Google+!")
     .setType("image/jpeg")
     .setStream(Uri.parse(photoUri))
     .getIntent()
     .setPackage("com.google.android.apps.plus");

私はこのコードを持っていますが、FacebookやTwitterなどのSDKを使用して画像とテキストを共有したいので使用できません..

4

1 に答える 1