在 Android 应用程序中,我遵循了本教程: 在 google plus 上分享帖子
@Override
public void onClick(View v) {
String tripDetails = "Test;
Intent shareIntent = new PlusShare.Builder(this)
.setText(tripDetails)
.setType("image/png")
.setContentDeepLinkId("Testing",
"Testing",
"Description.",
Uri.parse("https://www.example.com/image.png"))
.getIntent();
startActivityForResult(shareIntent, 0);
}
它运行成功,并且帖子也在 google plus 上共享。
但我不知道在 Google Plus 上共享 Post 之后调用哪个方法以及返回应用程序时调用哪个方法。那么你知道任何回调方法吗?
任何帮助将不胜感激。