I implemented posting on Twitter using this code
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setClassName("com.twitter.android", "com.twitter.android.PostActivity");
sharingIntent.putExtra(Intent.EXTRA_TEXT, msg);
startActivity(sharingIntent);
Now I’m thinking of doing the same thing for Google+ but I can’t find the class/package for it. Does anyone know which one is it or a way to find it out? Thank you! 🙂
Try this.
Check here for more details.