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.

I'm newbie to facebook sdk in android , Main activity and Main fragment sdk 3.0 are done I want to integrate it in this activity the facebook widget login in the XML layout

public class course extends Activity {

ImageButton ib1,ib2,ib3;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    ib1=(ImageButton) findViewById(R.id.ib1);
    ib2= (ImageButton) findViewById(R.id.ib2);
    ib3=(ImageButton) findViewById(R.id.ib3);

    ib1.setOnClickListener(new OnClickListener() {

        public void onClick(View v) {
            // TODO Auto-generated method stub
            Toast.makeText(getApplicationContext(), 
                    "Button is clicked", Toast.LENGTH_LONG).show();
        }
    });
    ib2.setOnClickListener(new OnClickListener() {

        public void onClick(View v) {
            // TODO Auto-generated method stub
        Uri u = Uri.parse("http://www.facebook.com/pages/Coursebook/534177843273749");
        Intent intent = new Intent(Intent.ACTION_VIEW, u);
        startActivity(intent);
        }
    });




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