├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── amap.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── me │ │ └── weyye │ │ └── demo │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── me │ │ │ └── weyye │ │ │ └── demo │ │ │ └── MainActivity.java │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── me │ └── weyye │ └── demo │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── hilocation ├── .gitignore ├── build.gradle ├── libs │ └── AMap_Location_V3.4.0_20170427.jar ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── me │ │ └── weyye │ │ └── demo │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── me │ │ │ └── weyye │ │ │ └── hilocation │ │ │ ├── HiLocation.java │ │ │ ├── LocationListener.java │ │ │ └── SimpleLocationListener.java │ └── res │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── me │ └── weyye │ └── demo │ └── ExampleUnitTest.java ├── screenshot ├── QQ截图20170525161133.png ├── QQ截图20170525161647.png ├── QQ截图20170525162318.png ├── QQ截图20170525162508.png ├── QQ截图20170525162604.png ├── QQ截图20170525162907.png ├── QQ截图20170525163020.png ├── QQ截图20170525163417.png ├── QQ截图20170525173227.png ├── QQ截图20170525173828.png ├── QQ截图20170525174034.png └── app-debug.apk └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/README.md -------------------------------------------------------------------------------- /amap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/amap.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/me/weyye/demo/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/app/src/androidTest/java/me/weyye/demo/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/me/weyye/demo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/app/src/main/java/me/weyye/demo/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/me/weyye/demo/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/app/src/test/java/me/weyye/demo/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/gradlew.bat -------------------------------------------------------------------------------- /hilocation/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /hilocation/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/hilocation/build.gradle -------------------------------------------------------------------------------- /hilocation/libs/AMap_Location_V3.4.0_20170427.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/hilocation/libs/AMap_Location_V3.4.0_20170427.jar -------------------------------------------------------------------------------- /hilocation/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/hilocation/proguard-rules.pro -------------------------------------------------------------------------------- /hilocation/src/androidTest/java/me/weyye/demo/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/hilocation/src/androidTest/java/me/weyye/demo/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /hilocation/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/hilocation/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /hilocation/src/main/java/me/weyye/hilocation/HiLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/hilocation/src/main/java/me/weyye/hilocation/HiLocation.java -------------------------------------------------------------------------------- /hilocation/src/main/java/me/weyye/hilocation/LocationListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/hilocation/src/main/java/me/weyye/hilocation/LocationListener.java -------------------------------------------------------------------------------- /hilocation/src/main/java/me/weyye/hilocation/SimpleLocationListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/hilocation/src/main/java/me/weyye/hilocation/SimpleLocationListener.java -------------------------------------------------------------------------------- /hilocation/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/hilocation/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /hilocation/src/test/java/me/weyye/demo/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/hilocation/src/test/java/me/weyye/demo/ExampleUnitTest.java -------------------------------------------------------------------------------- /screenshot/QQ截图20170525161133.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/screenshot/QQ截图20170525161133.png -------------------------------------------------------------------------------- /screenshot/QQ截图20170525161647.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/screenshot/QQ截图20170525161647.png -------------------------------------------------------------------------------- /screenshot/QQ截图20170525162318.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/screenshot/QQ截图20170525162318.png -------------------------------------------------------------------------------- /screenshot/QQ截图20170525162508.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/screenshot/QQ截图20170525162508.png -------------------------------------------------------------------------------- /screenshot/QQ截图20170525162604.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/screenshot/QQ截图20170525162604.png -------------------------------------------------------------------------------- /screenshot/QQ截图20170525162907.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/screenshot/QQ截图20170525162907.png -------------------------------------------------------------------------------- /screenshot/QQ截图20170525163020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/screenshot/QQ截图20170525163020.png -------------------------------------------------------------------------------- /screenshot/QQ截图20170525163417.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/screenshot/QQ截图20170525163417.png -------------------------------------------------------------------------------- /screenshot/QQ截图20170525173227.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/screenshot/QQ截图20170525173227.png -------------------------------------------------------------------------------- /screenshot/QQ截图20170525173828.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/screenshot/QQ截图20170525173828.png -------------------------------------------------------------------------------- /screenshot/QQ截图20170525174034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/screenshot/QQ截图20170525174034.png -------------------------------------------------------------------------------- /screenshot/app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiqdjog1/HiLocation/HEAD/screenshot/app-debug.apk -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':hilocation' 2 | --------------------------------------------------------------------------------