• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

qn with android facebook sdk

Koson0511

Lurker
understood that a dialog call with 'feed' argument like below would pop up a facebook style dialog window, like with title 'Publish story', and some text like 'Post to Your Wall', but is there any easy way to customise this dialog window? say add some additional text or some logo? Do not want to build a new dialog from scratch...

thank you in advance

facebook.dialog(this,"feed", parameters,

new DialogListener() {
@Override
public void onComplete(Bundle values) {

}

@Override
public void onFacebookError(FacebookError error) {}

@Override
public void onError(DialogError e) {}

@Override
public void onCancel() {}
}
);
 
Back
Top Bottom