Basically, a friend of mine made an app that allows the user to rate certain items on a menu. I want to collect through ratings for each individual item on the menu and share them on facebook wall post.
How connect the two pieces of information together?
I'm assuming it has to do with these part of the facebook code:
Bundle params= new Bundle();
params.putString("name", "User X");
params.putString("caption", "Rating");
params.putString("description", "User X Rated");
params.putString("link", "???")
But I'm not sure what to put for link?
His ratings portion of the app has a share button that should direct to a facebook wall post but I'm not sure how to do that.
His button looks like this:
public void addListenerOnButton() {
shareButton = (Button) findViewById(R.id.shareButton);
//if click on me, then display the current rating value.
shareButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
if(rating!=-5)
{
Intent i = new Intent (getApplicationContext(), MenuItemActivity.class);
String itemTitle= (findViewById(R.id.menu_item)).toString();
Bundle b= new Bundle();
b.putFloat("rating", rating);
b.putString("itemName", itemTitle);
i.putExtras(b);
startActivity(i);
}
}
});
}