我正试图展示一个小吃吧
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'
}
但有两个错误我不知道为什么?
1。
无法解析方法 '使(android.view.View,java.lang.String中,?)'
2
无法解析符号 'LENGTH_LONG'
AlertController's documentation 谁能告诉我为什么会出现这些错误?
更新
的build.gradle:
{{1}}
答案 0 :(得分:2)
这是正确的方法:
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()