我使用此代码在 Twitter 上实现了发帖
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setClassName("com.twitter.android", "com.twitter.android.PostActivity");
sharingIntent.putExtra(Intent.EXTRA_TEXT, msg);
startActivity(sharingIntent);
现在我正在考虑为 Google+ 做同样的事情,但我找不到它的类/包。有谁知道它是哪一个或找到它的方法?谢谢!:)