我正在尝试使用此自定义ListView

https://android-arsenal.com/details/1/2078#!description

步骤如下:

步骤2 。将特定的存储库添加到您的构建文件中:

repositories {
    maven {
        url "https://jitpack.io"
    }
}

步骤3. 在构建文件中添加依赖项(不要忘记指定正确的限定符,通常是“aar”):
dependencies {
    compile 'com.github.THEONE10211024:WaterDropListView:7b51373b3b'
}

和便秘说明

“2.在您的 Activity 或片段中实现WaterDropListView.IWaterDropListViewListener。”
Public class MainActivity extends Activity implements WaterDropListView.IWaterDropListViewListener

所以我做到了:

在项目的bulid.gradle中:
allprojects {
    repositories {
        google()
        jcenter()
        maven {
            url "https://jitpack.io"
        }
    }
}

并在bulid.gradle模块中
dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.android.support:design:26.1.0'
    implementation 'com.github.THEONE10211024:WaterDropListView:7b51373b3b'
}

gradle同步时没有错误。
但是当在MainActivity implements WaterDropListView.IWaterDropListViewListener中实现时

我收到“无法解析符号WaterDropListView”

最佳答案

这看起来好像不是有效的库。

app/build.gradle中,它引用

apply plugin: 'com.android.application'

一个图书馆应该是
apply plugin: 'com.android.library'

如果您真的想使用它,我建议您在项目中获取代码并创建自己的库模块。

07-27 23:48