Android应用正在运行,但例外

时间:2015-04-08 07:23:30

标签: android xml facebook classnotfoundexception

我正在尝试在Eclipse上集成和运行Android应用程序。

我刚刚按照所有步骤来设置Facebook的登录按钮。

该应用程序运行正常但是一旦模拟器打开,应用程序崩溃并出现例外列表:

例外图片

http://s29.postimg.org/ak0cv9w6f/pro1.png

的manifest.xml

http://s8.postimg.org/3oh1f24lx/image.png

然后我的activity_main.xml包含

<com.facebook.login.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" />

1 个答案:

答案 0 :(得分:0)

我对facebook SDK了解不多,但请检查按钮的包名是否正确。在您提供的教程中,它被称为

com.facebook.widget.LoginButton

试试这个:

<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" />