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.