├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── misc.xml ├── modules.xml └── runConfigurations.xml ├── README.en.md ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── xbrc │ │ └── myapplication │ │ └── ExampleInstrumentedTest.kt │ ├── jniLibs │ ├── arm64-v8a │ │ └── libAMapSDK_MAP_v6_8_0.so │ ├── armeabi-v7a │ │ └── libAMapSDK_MAP_v6_8_0.so │ ├── armeabi │ │ └── libAMapSDK_MAP_v6_8_0.so │ ├── x86 │ │ └── libAMapSDK_MAP_v6_8_0.so │ └── x86_64 │ │ └── libAMapSDK_MAP_v6_8_0.so │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── xbrc │ │ │ └── myapplication │ │ │ ├── activity │ │ │ ├── LocationActivity.kt │ │ │ ├── MainActivity.kt │ │ │ └── SearchPositionActivity.kt │ │ │ ├── base │ │ │ └── BaseActivity.kt │ │ │ ├── bean │ │ │ └── PositionItem.kt │ │ │ ├── utils │ │ │ └── InputUtil.kt │ │ │ └── views │ │ │ ├── ClearEditText.kt │ │ │ ├── Linker.kt │ │ │ ├── MyMapView.kt │ │ │ └── internal │ │ │ ├── OnLinkClickListener.kt │ │ │ └── TextViewLinkMovementMethod.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xxhdpi │ │ ├── address.png │ │ ├── delete.png │ │ ├── ic_arrow_back_white_24dp.png │ │ ├── ic_back.png │ │ ├── ic_location_needle.png │ │ ├── ic_location_point.png │ │ ├── ic_my_location.png │ │ ├── ic_my_location_sel.png │ │ ├── ic_position_is_select.png │ │ ├── ic_search.png │ │ ├── icon_empty_data.png │ │ ├── icon_location.png │ │ ├── icon_location1.png │ │ └── icon_location2.png │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ └── shape_green.xml │ │ ├── layout │ │ ├── activity_location.xml │ │ ├── activity_main.xml │ │ ├── activity_search_position.xml │ │ ├── item_location.xml │ │ ├── item_search.xml │ │ ├── marker_location_point.xml │ │ ├── marker_position_needle.xml │ │ └── view_data_empty.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── xbrc │ └── myapplication │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/xbrc/myapplication/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/androidTest/java/com/xbrc/myapplication/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/jniLibs/arm64-v8a/libAMapSDK_MAP_v6_8_0.so: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/jniLibs/armeabi-v7a/libAMapSDK_MAP_v6_8_0.so: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/jniLibs/armeabi/libAMapSDK_MAP_v6_8_0.so: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/jniLibs/x86/libAMapSDK_MAP_v6_8_0.so: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/jniLibs/x86_64/libAMapSDK_MAP_v6_8_0.so: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/xbrc/myapplication/activity/LocationActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/java/com/xbrc/myapplication/activity/LocationActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/xbrc/myapplication/activity/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/java/com/xbrc/myapplication/activity/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/xbrc/myapplication/activity/SearchPositionActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/java/com/xbrc/myapplication/activity/SearchPositionActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/xbrc/myapplication/base/BaseActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/java/com/xbrc/myapplication/base/BaseActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/xbrc/myapplication/bean/PositionItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/java/com/xbrc/myapplication/bean/PositionItem.kt -------------------------------------------------------------------------------- /app/src/main/java/com/xbrc/myapplication/utils/InputUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/java/com/xbrc/myapplication/utils/InputUtil.kt -------------------------------------------------------------------------------- /app/src/main/java/com/xbrc/myapplication/views/ClearEditText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/java/com/xbrc/myapplication/views/ClearEditText.kt -------------------------------------------------------------------------------- /app/src/main/java/com/xbrc/myapplication/views/Linker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/java/com/xbrc/myapplication/views/Linker.kt -------------------------------------------------------------------------------- /app/src/main/java/com/xbrc/myapplication/views/MyMapView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/java/com/xbrc/myapplication/views/MyMapView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/xbrc/myapplication/views/internal/OnLinkClickListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/java/com/xbrc/myapplication/views/internal/OnLinkClickListener.kt -------------------------------------------------------------------------------- /app/src/main/java/com/xbrc/myapplication/views/internal/TextViewLinkMovementMethod.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/java/com/xbrc/myapplication/views/internal/TextViewLinkMovementMethod.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/drawable-xxhdpi/address.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/drawable-xxhdpi/delete.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_arrow_back_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/drawable-xxhdpi/ic_arrow_back_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/drawable-xxhdpi/ic_back.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_location_needle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/drawable-xxhdpi/ic_location_needle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_location_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/drawable-xxhdpi/ic_location_point.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_my_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/drawable-xxhdpi/ic_my_location.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_my_location_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/drawable-xxhdpi/ic_my_location_sel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_position_is_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/drawable-xxhdpi/ic_position_is_select.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/drawable-xxhdpi/ic_search.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/icon_empty_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/drawable-xxhdpi/icon_empty_data.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/icon_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/drawable-xxhdpi/icon_location.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/icon_location1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/drawable-xxhdpi/icon_location1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/icon_location2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/drawable-xxhdpi/icon_location2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/drawable/shape_green.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_location.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/layout/activity_location.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_search_position.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/layout/activity_search_position.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_location.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/layout/item_location.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/layout/item_search.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/marker_location_point.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/layout/marker_location_point.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/marker_position_needle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/layout/marker_position_needle.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_data_empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/layout/view_data_empty.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/xbrc/myapplication/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/app/src/test/java/com/xbrc/myapplication/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwjfeifei/GDLocation/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------