我已阅读https://developers.facebook.com/docs/howtos/androidsdk/3.0/login-with-facebook/#step3上的教程。但是,本教程将登录按钮放在一个片段中。我想将登录按钮小部件直接放在我现有的活动布局中。例如,
<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>
我试图这样做但徒劳无功(登录按钮上的崩溃或登录状态不正确)。或者是否可以将片段放在我的活动布局中?