このチュートリアルで説明されている長いコードを使用せずにFacebookのログインを有効にするこのチュートリアルに従いました(正しく理解している場合)。問題は、チュートリアルによると、Facebook の LoginButton を使用していることです。
LoginButton authButton = (LoginButton) view.findViewById(R.id.authButton);
これは
<com.facebook.widget.LoginButton
android:id="@+id/login_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="30dp"
android:layout_marginBottom="30dp" />
独自のオブジェクトを使用したい。私の場合、ユーザーがクリックできる LinearLayout があります。これどうやってするの?