我有以下android布局xml:
<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">
<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>
但是我得到运行时错误:
甚至可以在图形编辑器中看到:
但我不明白为什么, 因为我已正确导入了FacebookSDK(我认为)
当我执行cmd +右键单击XML时,我得到了正确的类实现
`package com.facebook.widget;
公共类LoginButton扩展Button {`
我错过了什么?