Change Facebook SDK request dialog title & notification title

久未见 提交于 2019-12-02 06:06:43

Not sure if you can actually change the message for the notification. If you can find it in the documentation, it will tell you it's not possible (at least that's what I last came across). But you can change the title for the Dialog.

WebDialog dialog = new WebDialog.RequestsDialogBuilder(
                    this, Session.getActiveSession(), parameters)
                    .setTitle("Whatever title you like")
                    .setOnCompleteListener(new OnCompleteListener() {
                        /*what ever happens here */
                    }}).build();
dialog.show();
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!