페이스 북 로그인으로 앱을 개발했지만 로그인 프로세스에는 문제가 없습니다. 하지만 로그 아웃하려면 버튼이 보이지 않습니다.Android 왜 Facebook SDK 로그 아웃 버튼이 표시되지 않습니까?
깨진 앱 스크린 샷
작업 앱 스크린 샷
깨진 응용 프로그램 Gradle을 파일;
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.1"
defaultConfig {
applicationId "com.ex.ex"
minSdkVersion 15
targetSdkVersion 24
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
// Glide image library
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support:design:24.2.1'
compile 'com.android.support:support-v4:24.2.1'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.google.android.gms:play-services-auth:9.2.1'
compile 'com.facebook.android:facebook-android-sdk:4.1.0'
testCompile 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'
문제점의 근원은 무엇입니까? 이 문제를 어떻게 해결할 수 있습니까?
감사합니다.
당신이 활동 코드 및 XML 물건을 게시 할 경우 아마 유용합니다. 아마 당신이 로그인 한 경우 버튼을 표시하지 않는지 확인하십시오. – Flummox
페이스 북 버튼을 클릭 한 후 열리는 'AlertDialog'는 Facebook SDK와 함께 제공되거나 앱의 일부분입니까? –