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

Apps Change facebook status text color from my android application

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 :

HbtVxTrsN2e

http://screencast.com/t/HbtVxTrsN2e

String review = reviewEdit.getText().toString();

reviewEdit.setTextColor(color);
Here the color is green. These color is getting from colorpicker functionality.
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:
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()); }
I have posted the review defaultly black color.how can i post that review with green color.
please give me a solution ???
 
Back
Top Bottom