我試圖表現出的小吃店錯誤與方法品牌和符號LENGTH_LONG在小吃吧
Snackbar.make(view.findViewById(android.R.id.content), "Message", Snackbar.LENGTH_LONG).show();
但有兩個錯誤,我不知道爲什麼?
1.
Cannot resolve method 'make(android.view.View, java.lang.String, ?)'
2.
Cannot resolve symbol 'LENGTH_LONG'
UPDATE
的build.gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "24.0.2"
defaultConfig {
applicationId "com.domain.app"
minSdkVersion 10
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.0.0'
compile 'com.nispok:snackbar:2.6.1'
}
從你在哪裏調用小吃吧? – OBX
@OBX來自非主要活動類別。當我從主要活動呼叫時,也會發生這些錯誤。 – SAM
'Snackbar.make(this.findViewById(android.R.id.content),「Message」,Snackbar.LENGTH_LONG).show();'你可以試試這個從活動,看看它的解決? – OBX