我想用facebook集成制作应用程序。我正在使用Android Studio 1.1.0。我可以在build.gradle(Module:app)中导入facebook skd 4.0.0并在Java代码中使用它:
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "package.test"
minSdkVersion 15
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
mavenCentral()
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.0.0'
compile 'com.facebook.android:facebook-android-sdk:4.0.0'
}
我还将LoginButton放入我的活动的布局文件中:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
...
tools:context=".MainActivity">
<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_marginBottom="30dp"
android:layout_marginTop="30dp" />
</RelativeLayout>
此exception被setContentView(layoutfile)
抛出。
我已经在github上的facebook sdk中检查了样本,但它没有帮助我解决这个问题。 facebook sdk的导入是否正确?
提前致谢!
答案 0 :(得分:0)
您需要在活动或应用程序onCreate中调用FacebookSdk.sdkInitialize。
答案 1 :(得分:0)
检查menifest.xml 我使用facebookSDK 3.x并升级4.x. 我有类似的情况。我在menifest.xml上更改了这个“provider ..”。 我解决了这个问题。 “提供者......”4.x的来源是不同的。此更改位于developers.facebook.com(升级3.x - &gt; 4.x页面)。