hi i am working on facebook app and when i am posting my message which is perfectly post but but space between two word which gives '+' sign sign. eg:: Hello+Good+Morning.... so can any one tell me how to fix this please i am waiting.
public void postMessage() throws UnsupportedEncodingException
{
String posttext = "";
posttext = editText.getText().toString().trim();
AsyncFacebookRunner mAsyncRunner = new AsyncFacebookRunner(oauth);
Bundle params = new Bundle();
params.putString("access_token", access_token);
params.putString("message", URLEncoder.encode(posttext,"UTF-8"));
mAsyncRunner.request("me/feed", params, "POST", this);
}