├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── junmeng │ │ └── region │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── junmeng │ │ │ └── region │ │ │ ├── MainActivity.java │ │ │ └── RegionDetectSViewActivity.java │ └── res │ │ ├── drawable │ │ ├── ic_china.xml │ │ └── ic_chinalow.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── activity_region_detect_sview.xml │ │ └── activity_region_detect_view.xml │ │ ├── menu │ │ └── menu_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 │ └── com │ └── junmeng │ └── region │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── lib_regiondetector ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── junmeng │ │ │ └── rdetecte │ │ │ ├── bean │ │ │ ├── MapPathInfo.java │ │ │ └── VectorPathInfo.java │ │ │ ├── utils │ │ │ ├── CommonUtil.java │ │ │ ├── PathParser.java │ │ │ └── VectorMapParser.java │ │ │ └── widget │ │ │ ├── BaseSurfaceView.java │ │ │ └── RegionDetectSurfaceView.java │ └── res │ │ ├── drawable │ │ ├── ic_location_24dp.xml │ │ └── ic_map_china.xml │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── junmeng │ └── rdetecte │ └── ExampleUnitTest.java ├── screenshots ├── QQ截图20170220173408.png ├── device-2017-02-20-174131.mp4_1487584213.gif ├── device-2017-02-20-174131.mp4_1487584269.gif └── device-2017-02-20-174131.mp4_1487584566.gif └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/junmeng/region/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/src/androidTest/java/com/junmeng/region/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/junmeng/region/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/src/main/java/com/junmeng/region/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/junmeng/region/RegionDetectSViewActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/src/main/java/com/junmeng/region/RegionDetectSViewActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_china.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/src/main/res/drawable/ic_china.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_chinalow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/src/main/res/drawable/ic_chinalow.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_region_detect_sview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/src/main/res/layout/activity_region_detect_sview.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_region_detect_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/src/main/res/layout/activity_region_detect_view.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/junmeng/region/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/app/src/test/java/com/junmeng/region/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/gradlew.bat -------------------------------------------------------------------------------- /lib_regiondetector/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /lib_regiondetector/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/lib_regiondetector/build.gradle -------------------------------------------------------------------------------- /lib_regiondetector/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/lib_regiondetector/proguard-rules.pro -------------------------------------------------------------------------------- /lib_regiondetector/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/lib_regiondetector/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /lib_regiondetector/src/main/java/com/junmeng/rdetecte/bean/MapPathInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/lib_regiondetector/src/main/java/com/junmeng/rdetecte/bean/MapPathInfo.java -------------------------------------------------------------------------------- /lib_regiondetector/src/main/java/com/junmeng/rdetecte/bean/VectorPathInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/lib_regiondetector/src/main/java/com/junmeng/rdetecte/bean/VectorPathInfo.java -------------------------------------------------------------------------------- /lib_regiondetector/src/main/java/com/junmeng/rdetecte/utils/CommonUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/lib_regiondetector/src/main/java/com/junmeng/rdetecte/utils/CommonUtil.java -------------------------------------------------------------------------------- /lib_regiondetector/src/main/java/com/junmeng/rdetecte/utils/PathParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/lib_regiondetector/src/main/java/com/junmeng/rdetecte/utils/PathParser.java -------------------------------------------------------------------------------- /lib_regiondetector/src/main/java/com/junmeng/rdetecte/utils/VectorMapParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/lib_regiondetector/src/main/java/com/junmeng/rdetecte/utils/VectorMapParser.java -------------------------------------------------------------------------------- /lib_regiondetector/src/main/java/com/junmeng/rdetecte/widget/BaseSurfaceView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/lib_regiondetector/src/main/java/com/junmeng/rdetecte/widget/BaseSurfaceView.java -------------------------------------------------------------------------------- /lib_regiondetector/src/main/java/com/junmeng/rdetecte/widget/RegionDetectSurfaceView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/lib_regiondetector/src/main/java/com/junmeng/rdetecte/widget/RegionDetectSurfaceView.java -------------------------------------------------------------------------------- /lib_regiondetector/src/main/res/drawable/ic_location_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/lib_regiondetector/src/main/res/drawable/ic_location_24dp.xml -------------------------------------------------------------------------------- /lib_regiondetector/src/main/res/drawable/ic_map_china.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/lib_regiondetector/src/main/res/drawable/ic_map_china.xml -------------------------------------------------------------------------------- /lib_regiondetector/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/lib_regiondetector/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /lib_regiondetector/src/test/java/com/junmeng/rdetecte/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/lib_regiondetector/src/test/java/com/junmeng/rdetecte/ExampleUnitTest.java -------------------------------------------------------------------------------- /screenshots/QQ截图20170220173408.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/screenshots/QQ截图20170220173408.png -------------------------------------------------------------------------------- /screenshots/device-2017-02-20-174131.mp4_1487584213.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/screenshots/device-2017-02-20-174131.mp4_1487584213.gif -------------------------------------------------------------------------------- /screenshots/device-2017-02-20-174131.mp4_1487584269.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/screenshots/device-2017-02-20-174131.mp4_1487584269.gif -------------------------------------------------------------------------------- /screenshots/device-2017-02-20-174131.mp4_1487584566.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-coding-well/RegionDetector/HEAD/screenshots/device-2017-02-20-174131.mp4_1487584566.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':lib_regiondetector' 2 | --------------------------------------------------------------------------------