gpt4 book ai didi

java - Snackbar 无法解析 make 方法

转载 作者:行者123 更新时间:2023-12-02 13:10:01 24 4
gpt4 key购买 nike

我在尝试让 snackbar 工作时遇到问题,我认为这与我的构建 gradle 有关,我可以将 snackbar 导入到我的 Activity 中,但随后会发生这种情况: enter image description here

我的等级:

apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.example.afcosta.inesctec.pt.android"
minSdkVersion 21
targetSdkVersion 25
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'
})
compile 'com.android.support:appcompat-v7:25.0.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.volley:volley:1.0.0'
compile 'com.android.support:design:25.0.1'
testCompile 'junit:junit:4.12'
}

我尝试更改设计的编译版本,但随后我也需要更改 appcombat,这给了我一些错误,有什么帮助吗?

最佳答案

试试这个,我的 friend

Snackbar snackbar = Snackbar
.make(coordinatorLayout, "Message is deleted", Snackbar.LENGTH_LONG)
.setAction("UNDO", new View.OnClickListener() {
@Override
public void onClick(View view) {
Snackbar snackbar1 = Snackbar.make(coordinatorLayout, "Message is restored!", Snackbar.LENGTH_SHORT);
snackbar1.show();
}
});

snackbar.show();

关于java - Snackbar 无法解析 make 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43998443/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com