Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

facebook share dialog with select pages tab in android

I am using facebook sdk 3.5.2. I want to implement facebook share dialog with option to share the post on a specific page.

Code for share dialog.

FacebookDialog shareDialog = new FacebookDialog.ShareDialogBuilder(getActivity())
                        .setLink(linkUrl)
                        .setName(teamName+" - "+newsTitle)
                        .setDescription(linksDexcription)
                        .build();
                        uiHelper.trackPendingDialogCall(shareDialog.present());

Share dialog in the current situtation is like that Image 1

I want to customize the dialog in this style.Take this picture from facebook android app when user wants to share an existing post from his wall. You can see a tab to select page or group at the bottom of the image 2

Image 2 taken form android facebook app

like image 614
Jaffar Raza Avatar asked Oct 29 '13 10:10

Jaffar Raza


1 Answers

According to official Facebook api, you can see in their screen shots that it is not possible. It's 100% depends on them.

enter image description here

like image 159
Ilya Gazman Avatar answered Oct 13 '22 06:10

Ilya Gazman