0

在 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 之后调用哪个方法以及返回应用程序时调用哪个方法。那么你知道任何回调方法吗?

任何帮助将不胜感激。

4

1 回答 1

4

您的活动的onActivityResult方法将被调用。因此,在 onActivityResult 方法中发布后处理您的 UI 更改

于 2013-08-16T10:39:17.773 回答