Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.