Snackbar 中的方法 make 和符号 LENGTH_LONG 出错
Error with method make and symbol LENGTH_LONG in Snackbar
我想展示一个小吃店
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'
谁能告诉我为什么会出现这些错误?
更新
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'
}
这是正确的方法:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.1"
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:25.0.0'
compile 'com.android.support:design:25.1.0'
}
我也将 compileSdkVersion
& buildToolsVersion
更改为最新版本,因为它最好选择前沿代码。如果您愿意,也可以恢复到旧版本。但是 DO 请注意,始终保持 compileSdkVersion
和 buildToolsVersion
相同,即如果您选择 23
,则两者都选择 23
,否则会引起问题。
现在,来到 SnackBar
,SnackBar
是 Android 设计库的一部分。你正在编译 compile 'com.nispok:snackbar:2.6.1'
。而是使用设计库: compile 'com.android.support:design:25.1.0'
。那应该可以解决问题。
现在,从您的 Activity,以这种方式调用 SnackBar
:
Snackbar.make(this.findViewById(android.R.id.content), "Message", Snackbar.LENGTH_LONG).show()
我想展示一个小吃店
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'
更新
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'
}
这是正确的方法:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.1"
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:25.0.0'
compile 'com.android.support:design:25.1.0'
}
我也将 compileSdkVersion
& buildToolsVersion
更改为最新版本,因为它最好选择前沿代码。如果您愿意,也可以恢复到旧版本。但是 DO 请注意,始终保持 compileSdkVersion
和 buildToolsVersion
相同,即如果您选择 23
,则两者都选择 23
,否则会引起问题。
现在,来到 SnackBar
,SnackBar
是 Android 设计库的一部分。你正在编译 compile 'com.nispok:snackbar:2.6.1'
。而是使用设计库: compile 'com.android.support:design:25.1.0'
。那应该可以解决问题。
现在,从您的 Activity,以这种方式调用 SnackBar
:
Snackbar.make(this.findViewById(android.R.id.content), "Message", Snackbar.LENGTH_LONG).show()