CityPicker

一行代码轻松搞定现在使用较多的类似美团、外卖等APP的城市选择界面!项目地址:https://github.com/xuexiangjys/CityPicker

主要功能:

  • 字母悬浮栏
  • 指定热门城市
  • 自定义动画效果
  • 自定义主题
  • 名称或拼音搜索
  • 返回城市名、code等数据
  • 提供定位接口,解耦定位SDK

如何引用

1.先在项目根目录的 build.gradle 的 repositories 添加:

  1. allprojects {
  2. repositories {
  3. ...
  4. maven { url "https://jitpack.io" }
  5. }
  6. }

2.然后在dependencies添加:

  1. dependencies {
  2. ...
  3. implementation 'com.github.xuexiangjys:citypicker:1.0.1'
  4. implementation 'com.android.support:appcompat-v7:27.1.1'
  5. implementation 'com.android.support:recyclerview-v7:27.1.1'
  6. implementation 'com.android.support:design:27.1.1'
  7. }