0

Google+ でテキストを簡単に共有できますが、テキストに画像を追加したい場合、このメッセージが表示されます。

デバイスに保存されているメディア アイテムのみを投稿できます。

これが私のコードです:

Uri uri = Uri.parse("android.resource://com.smurf.fapiao/" + R.drawable.myimage);


     // Launch the Google+ share dialog with attribution to your app.
     Intent shareIntent = new PlusShare.Builder(getActivity())
        .setType("image/png").setStream(uri)
        .setText(getString(R.string.social_googleplus_text) + " http://www.wangwanglotto.com")
        .getIntent();

    startActivityForResult(shareIntent, 0);

何か考えはありますか?ファイルを raw または assets フォルダーに入れようとしましたが、それでもメッセージが表示されます。

前もって感謝します

4

0 に答える 0