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've been working with the facebook-android-sdk and integrated posting a message to the user's wall. I've got the posting working, however I want to display the user's wall with the new post so they can view it.

Does the sdk implement this functionality through Dialogs somewhow or do I need to load the Graph API URL through a webview in Android? (going off the info here http://developers.facebook.com/docs/reference/dialogs/

share|improve this question
What API do you use to post to the user's wall? – DMCS Jan 30 '12 at 22:31
I'm using the facebook-android-sdk github.com/facebook/facebook-android-sdk – wufoo Jan 31 '12 at 14:01

2 Answers

up vote 1 down vote accepted

For displaying the stream (aka wall/feed/posts)

overall information: see: https://github.com/facebook/facebook-android-sdk/tree/master/examples/stream

Java code here for how to render: https://github.com/facebook/facebook-android-sdk/blob/master/examples/stream/src/com/facebook/stream/StreamRenderer.java

share|improve this answer
Thanks, I ended up just going with a webview - code below. – wufoo Jan 31 '12 at 14:50
1  
Hey, after monkeying around using the WebView route below I realized it's not such a robust solution. Links in the WebView open the browser which creates confusion. Going to reimplement with your suggestion. Marking this as the answer. – wufoo Feb 1 '12 at 15:19

After a lot of digging around, I just went ahead and used a Webview.

...

public void onComplete (Bundle values)
            {
                      Log.d (TAG, "onComplete()");
              Toast.makeText (getBaseContext (), "Completed", Toast.LENGTH_SHORT).show();
              SharedPreferences.Editor editor = mPrefs.edit();
                  editor.putString("access_token", facebook.getAccessToken());
                  editor.putLong("access_expires", facebook.getAccessExpires());
                  editor.commit();

                      // post the message 
                  postMessageOnWall ("");

                      // we're already authenticated so just go to the user's wall in a webview
                  WebView mWebView;
                  mWebView = (WebView) findViewById(R.id.wv_fb);
                  mWebView.getSettings().setJavaScriptEnabled(true);
                  mWebView.loadUrl("http://www.facebook.com/profile.php?&sk=wall");
            }

...

share|improve this answer

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.