更改Facebook SDK请求对话框标题&通知标题

时间:2014-05-02 21:55:53

标签: java android facebook facebook-requests

这个问题是关于android ...我已经有一周时间试图将我自己的消息显示为邀请/请求对话框的标题以及通知(对于facebook SDK 3.0+)但我不知道如何,和facebook SDK文档是一块!@#$,我必须从一开始就通过所有文档来了解一小段信息

这是我的代码

        final Bundle parameters = new Bundle();
        parameters.putString("app_id", /*app id*/);
        parameters.putString("to", /*selected friends*/);
        parameters.putString("message", /*a message displayed to the inviter*/);
        WebDialog dialog = new WebDialog.RequestsDialogBuilder(
                        this, Session.getActiveSession(), parameters)
                        .setOnCompleteListener(new OnCompleteListener() {/*what ever happens here */}
                        }).build();
        dialog.show();

现在2分:

1- i want to set the title of the request dialog, all i can see is "app requests"
2- i want to change the message that appears in the notification for the receiver

并请不要告诉我看到facebook文档,它是一块!@#$

1 个答案:

答案 0 :(得分:0)

不确定您是否可以实际更改通知的消息。如果你可以在文档中找到它,它会告诉你它是不可能的(至少那是我上次遇到的)。但您可以更改对话框的标题。

WebDialog dialog = new WebDialog.RequestsDialogBuilder(
                    this, Session.getActiveSession(), parameters)
                    .setTitle("Whatever title you like")
                    .setOnCompleteListener(new OnCompleteListener() {
                        /*what ever happens here */
                    }}).build();
dialog.show();