Skip to content

城市选择

xuexiangjys edited this page Jan 17, 2019 · 2 revisions

CityPicker

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

主要功能:

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

如何引用

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

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

2.然后在dependencies添加:

dependencies {
  ...
  implementation 'com.github.xuexiangjys:citypicker:1.0.1'
  implementation 'com.android.support:appcompat-v7:27.1.1'
  implementation 'com.android.support:recyclerview-v7:27.1.1'
  implementation 'com.android.support:design:27.1.1'
}
Clone this wiki locally