簡単な質問です。
最も簡単な方法で統合した「G+ で共有」ボタンがあります: 
https://plus.google.com/share?url=http:// ...
コメント ボックスにテキストを挿入する方法はありますか? 
今回の方法で出来ないのなら、他の方法で出来ないでしょうか?
簡単な質問です。
最も簡単な方法で統合した「G+ で共有」ボタンがあります: 
https://plus.google.com/share?url=http:// ...
コメント ボックスにテキストを挿入する方法はありますか? 
今回の方法で出来ないのなら、他の方法で出来ないでしょうか?
お使いのデバイスに Google+ アプリがインストールされているかどうかに関係なく役立つはずなので、試してみてください...
 protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    shareMediaButton = (Button) findViewById(R.id.share_button);
    shareMediaButton.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
             if(isGooglePlusInstalled())
                    {
                 PlusShare.Builder share = new PlusShare.Builder(MainActivity.this);
                    share.setText("write your message here.....!");
                    //share.addStream(selectedImage);
                    share.setType("text/plain");
                    startActivityForResult(share.getIntent(), 0);
        }else{
             Intent shareIntent = new PlusShare.Builder(MainActivity.this)
              .setType("text/plain")
              .setText("write your message here.....!")
              .getIntent();
          startActivityForResult(shareIntent, 0);
        }
        }
        public boolean isGooglePlusInstalled()
{
    try
    {
        getPackageManager().getApplicationInfo("com.google.android.apps.plus", 0 );
        return true;
    } 
    catch(PackageManager.NameNotFoundException e)
    {
        return false;
    }
}
    });
}