krishnaveni
Well-Known Member
I have to develop an one android application.
In my edittext message is displaying in green color.
now i want to post these green color message to my facebook wall from my android application.
please check these image.exactly i wanted the output is looking like :
http://screencast.com/t/HbtVxTrsN2e
The message is posted successfully.But posting with black color.
But i want to post the message with the same green color.
I want to post the message with selected color???
How can i do ????
I wrote the following code:
please give me a solution ???
In my edittext message is displaying in green color.
now i want to post these green color message to my facebook wall from my android application.
please check these image.exactly i wanted the output is looking like :
http://screencast.com/t/HbtVxTrsN2e
Here the color is green. These color is getting from colorpicker functionality.String review = reviewEdit.getText().toString();
reviewEdit.setTextColor(color);
The message is posted successfully.But posting with black color.
But i want to post the message with the same green color.
I want to post the message with selected color???
How can i do ????
I wrote the following code:
I have posted the review defaultly black color.how can i post that review with green color.private void postToFacebook(String review) {
mProgress.setMessage("Posting ...");
mProgress.show();
AsyncFacebookRunner mAsyncFbRunner = new AsyncFacebookRunner(mFacebook);
Bundle params = new Bundle(); params.putString("message", review);
mAsyncFbRunner.request("me/feed", params, "POST", new WallPostListener()); }
please give me a solution ???