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 have developed an app that uses Facebook login for user to login into the app.However i have to uninstall Facebook for android for it to work.Any assistance? Below is the code.

public class MokoActivity extends Activity implements OnClickListener{
    TextView create_account;
    EditText name;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        create_account=(TextView)findViewById(R.id.textView_createAccount);
        name=(EditText)findViewById(R.id.editText_name);
        create_account.setOnClickListener(this);
    }

    public void onClick(View v) {
        // TODO Auto-generated method stub
        switch(v.getId()){
        case R.id.textView_createAccount:
                String user_name=name.getText().toString();
                if(user_name.length()<4){
                    Toast toast=Toast.makeText(MokoActivity.this,"Invalid Name",Toast.LENGTH_LONG);
                    toast.show();
                }

                else{
            Session.openActiveSession(this, true,new Session.StatusCallback(){
                public void call(Session session,SessionState state,Exception exception){
                    if(state.isOpened()){
                        Intent intent=new Intent(MokoActivity.this,HomeActivity.class);
                        intent.putExtra("username",name.getText().toString());
                        startActivity(intent);
                    }
                }
            });
            }
            break;
        }
    }

    @Override
      public void onActivityResult(int requestCode, int resultCode, Intent data) {
          super.onActivityResult(requestCode, resultCode, data);
          Session.getActiveSession().onActivityResult(this, requestCode, resultCode, data);
      }
}

It works fine only that if facebook for android is installed,it doesnt redirect to HomeActivity intent after login.I have to uninstall facebook for android in order for it to function.

share|improve this question
As i got your question, if you want to uninstall FB app from your android device then you can go to setting->apps/manage app/application->tap on FB app in list and uninstall it. – ricintech Jan 2 at 10:12
@mungaihkamau You mean to say, if default facebook application is installed on your device at that time your application is not working. – Dipak Keshariya Jan 2 at 10:15
yes Dipak Keshariya.It redirects to the facebook login page,but after entering the username and password still remains on the login intent. – mungaih kamau Jan 2 at 10:20
1  
@mungaihkamau Are you using android facebook sdk? – Dipak Keshariya Jan 2 at 10:31
1  
@mungaihkamau Please see my answer, it will solve your problem. – Dipak Keshariya Jan 2 at 10:42
show 1 more comment

1 Answer

up vote 1 down vote accepted

Please Update below code of your application, it will solve your problem and if you have any query regarding that then tell me.

public void loginAndPostToWall() {
    facebook.authorize(this, PERMISSIONS, Facebook.FORCE_DIALOG_AUTH,
            new LoginDialogListener());
}

And see below link for more information on integrate Facebook in android application with complete source code.

Facebook Integration - Android

share|improve this answer
Here's my code.It works fine only that if facebook for android is installed it doesnt redirect to the HomePage activity after log in but stays on Moko Activity – mungaih kamau Jan 2 at 10:54
@mungaihkamau Where is your code? and don't change complete code, only update above code of your application. – Dipak Keshariya Jan 2 at 10:57
I have edited the question.Have a look at the code. – mungaih kamau Jan 2 at 11:00
@mungaihkamau post your full activity code. – Dipak Keshariya Jan 2 at 11:03
i have done that – mungaih kamau Jan 2 at 11:37
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.