我已在https://developers.facebook.com/docs/howtos/androidsdk/3.0/login-with-facebook/#step3阅读了该教程。 但是,教程将登录按钮放在一个片段中。 我想将登录按钮小部件直接放在我现有的Activity布局中。 例如,
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<!-- other layout for my activity -->
<com.facebook.widget.LoginButton
android:id="@+id/authButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="30dp"
/>
</LinearLayout>
我试图这样做但是徒劳(登录按钮上的登录状态崩溃或登录状态不正确)。 或者是否可以将片段放在我的Activity布局中?