2017-04-20 150 views
0

我想用Facebook登錄而不使用Facebook登錄按鈕。所以我在默認的android按鈕上應用了點擊事件。Android Facebook登錄問題

但我得到錯誤無法解析方法logInWithReadPermissions(..)..

這裏是我的代碼。任何幫助將讚賞

btnFBLogin.setOnClickListener(new View.OnClickListener() { 
     @Override 
     public void onClick(View v) 
     {  
      LoginManager.getInstance().logInWithReadPermissions(this, Arrays.asList("public_profile", "email"));// here giving error can not resolve method 
     } 
}); 
+0

入住這裏: - http://stackoverflow.com/questions/32605127/android-facebook-login-without-facebook-login-button/32606180#32606180 –

回答

2

您正在交接按鈕

的參考,但你需要傳遞活動的參考

請使用下面的代碼,可以幫助你。

看到這裏

LoginManager.getInstance().logInWithReadPermissions(LoginActivity.this, Arrays.asList("public_profile", "email")); 
+0

名稱和PIC對於操作員和'回答者'來說都是一樣的! – rafsanahmad007

+0

@ rafsanahmad007 ??? –

+0

只是說明事實...... !!! – rafsanahmad007