App Invites for Android:如何设置收到的消息内容

时间:2015-05-30 11:56:08

标签: android google-play-services google-app-invites

我正在尝试测试新的Google Play服务API" App Invites for Android"目前处于测试阶段。也许我错过了一些东西但是在尝试了示例应用程序,阅读文档并在我的应用程序中测试后,我无法弄清楚如何设置将接收受邀人员的内容消息。

我只想在游戏商店中显示应用程序链接的一些内容,就像在文档中显示图片一样,但我得到的只是一个简单的文字,上面写着"安装此应用程序"。

enter image description here enter image description here

测试这个新api的人可以帮助我吗?

2 个答案:

答案 0 :(得分:1)

如果您将其添加到自己的应用中,它会自动显示播放商店内容。

答案 1 :(得分:0)

            String inviteTitle = "This app is terrific. try and get $5 off ";
            String inviteMessage = "install the application";


            Intent intent = new AppInviteInvitation.IntentBuilder(inviteTitle)
                    .setMessage(inviteMessage)
                    .build();
            startActivityForResult(intent, REQUEST_INVITE);

相当肯定它是这样的