Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using facebook defaul dialog to share post on my facebook wall . My code is given below .

facebook.dialog(this, "feed", new DialogListener() {

        @Override
        public void onFacebookError(FacebookError e) {
        }

        @Override
        public void onError(DialogError e) {
        }

        @Override
        public void onComplete(Bundle values) {
        }

        @Override
        public void onCancel() {
        }
    });

But now I am adding a TextView and a Button , and after clicking on button the textView text will be posted on my facebook wall.

share|improve this question
Work on your accept rate to get more response. – Chinmoy Debnath Oct 2 '12 at 7:17

1 Answer

up vote 1 down vote accepted

Override onComplete() in your DialogListener then do what you want or get the value using getText from the textview and post it.

public void onComplete(Bundle values) { 
            mProgress.setMessage("Posting ...");
            mProgress.show();

            AsyncFacebookRunner mAsyncFbRunner = new AsyncFacebookRunner(mFacebook);

            Bundle params = new Bundle();

            params.putString("message", "A Game Developed By Me !");
            params.putString("name", "Match Maker");
            params.putString("caption", "www.labmimosa.com/");
            params.putString("link", "https://play.google.com/store/apps/details?id=com.reverie.fushh");
            params.putString("description", "Dexter:  Blood. Sometimes it sets my teeth on edge, other times it helps me control the chaos.");
            params.putString("picture", "http://twitpic.com/show/thumb/6hqd44");
            //params.putByteArray("picture", bitMapData);

            mAsyncFbRunner.request("me/feed", params, "POST", new WallPostListener());
        }

Wallpostlistener class is

private final class WallPostListener extends BaseRequestListener {
        public void onComplete(final String response) {
            mRunOnUi.post(new Runnable() {
                @Override
                public void run() {
                    mProgress.cancel();

                    Toast.makeText(Exp_Fb_Twt_Activity.this, "Posted to Facebook", Toast.LENGTH_SHORT).show();
                }
            });
        }
    }
share|improve this answer
Thanks for answering my question .. I have one confusion , how to implement WallPostListener class ? – TKumar Oct 2 '12 at 7:53
i have added that class, its nothing only a base request listener class. – Chinmoy Debnath Oct 2 '12 at 8:40
BaseRequestListener cannot be resolved to a type. – TKumar Oct 2 '12 at 9:02
1  
Thanks for helping me. How can I upload my SD card image on facebook ? – TKumar Oct 2 '12 at 9:46
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.