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.

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);
                }   



            }

        });

      }
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.