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.

My android application implements Facebook. Posted an image using url along with some details and user comments. Now I want to set separate links for the image and the text, i.e., I want to link to a site when the image from the facebook wall is clicked and go to another page when clicked on the text.

My code is this:

Bundle parameters = new Bundle();
parameters.putString("name", Name);
parameters.putString("caption",Caption);
parameters.putString("picture",ImageUrl); 
parameters.putString("link", URL);

It works but it goes to same site when I click on both image and text. How to achieve this?

Thanks in advance.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.