android - Sending request to Facebook friend has wrong message -


i want send request friend web dialog. okay except message have no idea comes where!

this bundle:

private void sharetofacebook() {         if(facebookuser != null) {              bundle params = new bundle();             params.putstring("method", "apprequests");             params.putstring("message", facebookuser.getname() + " sent request in fancied.");             params.putstring("to", facebookuser.getfacebookid());              listener.onfacebookrequestdialog(params);         }     } 

i'm passing bundle parameter listener , listener , proper things , dialog displays. can see in attached image, there text message. how can remove or modify it. checked page of requests dialog, didn't find parameter useful @ end of page.

any comments or suggestion appreciated. thanks.

enter image description here

this line:

    params.putstring("message", facebookuser.getname() + " sent request in fancied."); 

sends text.

the large, nicely formatted text above automatically generated .onfacebookrequestdialog

try putting else in putstring , see.


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -