下拉选择框:NiceSpinner的简单使用

  1、添加依赖
在app模块下build.gradle的dependencies中添加依赖:implementation ‘com.github.arcadefire:nice-spinner:1.3.6’
在项目模块下build.gradle中:

allprojects {
    repositories {
        google()
        jcenter()
        maven { url "https://jitpack.io" }//添加这句话
    }
}

记得要sync

  2布局文件中

 

你可能感兴趣的:(下拉选择框:NiceSpinner的简单使用)