├── .gitignore ├── .idea ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── AndroidDatabindingInterface ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── androiddatabindinginterface │ │ │ └── toong │ │ │ └── com │ │ │ └── androiddatabindinginterface │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── androiddatabindinginterface │ │ │ │ └── toong │ │ │ │ └── com │ │ │ │ └── androiddatabindinginterface │ │ │ │ ├── IXObject.java │ │ │ │ ├── MainActivity.java │ │ │ │ └── X1Object.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.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 │ │ └── androiddatabindinginterface │ │ └── toong │ │ └── com │ │ └── androiddatabindinginterface │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── AndroidPauseResumeAnimation ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── toong │ │ │ └── androidpauseresumeanimation │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── toong │ │ │ │ └── androidpauseresumeanimation │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── anim │ │ │ └── fade.xml │ │ │ ├── animator │ │ │ ├── fade_in.xml │ │ │ └── fade_out.xml │ │ │ ├── layout │ │ │ └── activity_main.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 │ │ └── toong │ │ └── androidpauseresumeanimation │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── AndroidScreenRotationLifecycle ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── toong │ │ │ └── androidscreenrotationlifecycle │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── toong │ │ │ │ └── androidscreenrotationlifecycle │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.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 │ │ └── toong │ │ └── androidscreenrotationlifecycle │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── AppCompatThemeDemo ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── framgia │ │ │ └── appcompatthemedemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── framgia │ │ │ │ └── appcompatthemedemo │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.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 │ │ └── example │ │ └── framgia │ │ └── appcompatthemedemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── CheckBoxInRecyclerView ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── framgia │ │ │ └── checkboxinrecyclerview │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── framgia │ │ │ │ └── checkboxinrecyclerview │ │ │ │ ├── Item.java │ │ │ │ ├── ItemAdapter.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── item_list_row.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 │ │ └── example │ │ └── framgia │ │ └── checkboxinrecyclerview │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── CircularTextView ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── example │ │ │ └── toong │ │ │ └── circulartextview │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── example │ │ │ │ └── toong │ │ │ │ └── circulartextview │ │ │ │ ├── CircularTextView.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.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 │ │ └── example │ │ └── toong │ │ └── circulartextview │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Dagger2Demo ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── framgia │ │ │ └── myapplication │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── framgia │ │ │ │ └── myapplication │ │ │ │ ├── MainActivity.java │ │ │ │ └── NetworkApi.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.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 │ │ └── example │ │ └── framgia │ │ └── myapplication │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── DemoProject ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── toong │ │ │ └── demoproject │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── toong │ │ │ │ └── demoproject │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.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 │ │ └── toong │ │ └── demoproject │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── DialogAboveOtherDialog ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── toong │ │ │ └── dialogaboveotherdialog │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── toong │ │ │ │ └── dialogaboveotherdialog │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.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 │ │ └── example │ │ └── toong │ │ └── dialogaboveotherdialog │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── DialogFragmentWithListener2 ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── toong │ │ │ └── dialogfragmentwithlistener │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── toong │ │ │ │ └── dialogfragmentwithlistener │ │ │ │ ├── Dialog.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── dialog_view.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 │ │ └── toong │ │ └── dialogfragmentwithlistener │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── DrawLineByFinger ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── framgia │ │ │ └── drawlinebyfinger │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── framgia │ │ │ │ └── drawlinebyfinger │ │ │ │ ├── DoodleCanvas.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.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 │ │ └── example │ │ └── framgia │ │ └── drawlinebyfinger │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── DummyProject ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── workspace.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── libs │ │ └── MapboxGLAndroidSDK-release.aar │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── example │ │ │ └── toong │ │ │ └── dummyproject │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── example │ │ │ │ └── toong │ │ │ │ └── dummyproject │ │ │ │ ├── MainActivity.java │ │ │ │ └── MopView.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── bg_ss.xml │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ └── activity_main.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 │ │ └── example │ │ └── toong │ │ └── dummyproject │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── EspressoTest ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── toong │ │ │ └── espressotest │ │ │ ├── ExampleInstrumentedTest.java │ │ │ └── HelloWorldEspressoTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── toong │ │ │ │ └── espressotest │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.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 │ │ └── toong │ │ └── espressotest │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── FireBaseUpdateDemo ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── example │ │ │ └── toong │ │ │ └── firebaseupdatedemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── example │ │ │ │ └── toong │ │ │ │ └── firebaseupdatedemo │ │ │ │ ├── MainActivity.java │ │ │ │ └── Masjed.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.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 │ │ └── example │ │ └── toong │ │ └── firebaseupdatedemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── FirebaseRecyclerAdapterMutipleViewType ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── example │ │ │ └── toong │ │ │ └── firebaserecycleradaptermutipleviewtype │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── example │ │ │ │ └── toong │ │ │ │ └── firebaserecycleradaptermutipleviewtype │ │ │ │ ├── MainActivity.java │ │ │ │ ├── Person.java │ │ │ │ └── PersonAdapter.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── item_person_type_1.xml │ │ │ └── item_person_type_2.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 │ │ └── example │ │ └── toong │ │ └── firebaserecycleradaptermutipleviewtype │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshot.png └── settings.gradle ├── FirebaseRecyclerViewWithLoadmore ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── example │ │ │ └── toong │ │ │ └── firebaserecyclerviewwithloadmore │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── example │ │ │ │ └── toong │ │ │ │ └── firebaserecyclerviewwithloadmore │ │ │ │ ├── EndlessRecyclerOnScrollListener.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── Question.java │ │ │ │ └── RecyclerViewAdapter.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── question_list_item.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 │ │ └── example │ │ └── toong │ │ └── firebaserecyclerviewwithloadmore │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── ListPopupWindow ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── framgia │ │ │ └── listpopupwindow │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── framgia │ │ │ │ └── listpopupwindow │ │ │ │ ├── ListPopupWindowAdapter.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── item_list_popup_window.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 │ │ └── example │ │ └── framgia │ │ └── listpopupwindow │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── LocationUpdates ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── toong │ │ │ └── locationupdates │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── toong │ │ │ │ └── locationupdates │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.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 │ │ └── example │ │ └── toong │ │ └── locationupdates │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── LockScreenOrientation ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── toong │ │ │ └── lockscreenorientation │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── toong │ │ │ │ └── lockscreenorientation │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.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 │ │ └── toong │ │ └── lockscreenorientation │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── MapBoxMapDemo ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── app-release.apk │ ├── build.gradle │ ├── libs │ │ └── MapboxGLAndroidSDK-release.aar │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── framgia │ │ │ └── myapplication │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── framgia │ │ │ │ └── myapplication │ │ │ │ ├── DistanceTextMarkerView.java │ │ │ │ ├── MainActivity.java │ │ │ │ └── SecondActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── bg_rectangle.xml │ │ │ └── icon_triangle_down.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── activity_second.xml │ │ │ └── bg_tooltip.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 │ │ └── example │ │ └── framgia │ │ └── myapplication │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── MyApplication ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ ├── com │ │ │ └── example │ │ │ │ └── framgia │ │ │ │ └── appcompattheme │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ └── example │ │ │ └── toong │ │ │ └── recyclerviewmutilpleitemtypesupportshowhideitemtype │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ ├── com │ │ │ │ └── example │ │ │ │ │ └── framgia │ │ │ │ │ └── appcompattheme │ │ │ │ │ └── MainActivity.java │ │ │ └── example │ │ │ │ └── toong │ │ │ │ └── recyclerviewmutilpleitemtypesupportshowhideitemtype │ │ │ │ ├── HeaderAdapter.java │ │ │ │ ├── Main.java │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainCyclic.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── item_1.xml │ │ │ ├── item_2.xml │ │ │ └── item_header.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 │ │ └── example │ │ │ └── framgia │ │ │ └── appcompattheme │ │ │ └── ExampleUnitTest.java │ │ └── example │ │ └── toong │ │ └── recyclerviewmutilpleitemtypesupportshowhideitemtype │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── MyApplication2 ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── framgia │ │ │ └── changeshapedrawablecolor │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── framgia │ │ │ │ └── changeshapedrawablecolor │ │ │ │ ├── Activity1.java │ │ │ │ ├── Activity2.java │ │ │ │ ├── BaseActivity.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ └── bg_shape.xml │ │ │ ├── layout │ │ │ └── activity_main.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 │ │ └── example │ │ └── framgia │ │ └── changeshapedrawablecolor │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── MyFirstKotlin ├── .gitignore ├── .idea │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── toong │ │ │ └── myfirstkotlin │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── toong │ │ │ │ └── myfirstkotlin │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.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 │ │ └── toong │ │ └── myfirstkotlin │ │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── NumberPickerDemo ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── example │ │ │ └── toong │ │ │ └── numberpickerdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── example │ │ │ │ └── toong │ │ │ │ └── numberpickerdemo │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.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 │ │ └── example │ │ └── toong │ │ └── numberpickerdemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── ParseSpannableStringViaIntent ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── example │ │ │ └── toong │ │ │ └── parsespannablestringviaintent │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── example │ │ │ │ └── toong │ │ │ │ └── parsespannablestringviaintent │ │ │ │ ├── MainActivity.java │ │ │ │ └── SecondActivity.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── activity_second.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 │ │ └── example │ │ └── toong │ │ └── parsespannablestringviaintent │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── PreventOverdraw ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── toong │ │ │ └── preventoverdraw │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── toong │ │ │ │ └── preventoverdraw │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.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 │ │ └── example │ │ └── toong │ │ └── preventoverdraw │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── StartActivityNotFullScreen ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── toong │ │ │ └── startactivitynotfullscreen │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── toong │ │ │ │ └── startactivitynotfullscreen │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.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 │ │ └── toong │ │ └── startactivitynotfullscreen │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── TestMap ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── example │ │ │ └── toong │ │ │ └── testmap │ │ │ └── ExampleInstrumentedTest.java │ │ ├── debug │ │ └── res │ │ │ └── values │ │ │ └── google_maps_api.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── example │ │ │ │ └── toong │ │ │ │ └── testmap │ │ │ │ └── MapsActivity.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_maps.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 │ │ ├── release │ │ └── res │ │ │ └── values │ │ │ └── google_maps_api.xml │ │ └── test │ │ └── java │ │ └── example │ │ └── toong │ │ └── testmap │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── TooltipByPopupWindow ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── framgia │ │ │ └── tooltipbypopupwindow │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── framgia │ │ │ │ └── tooltipbypopupwindow │ │ │ │ ├── MainActivity.java │ │ │ │ └── tooltip │ │ │ │ └── TooltipView.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── bg_tooltip.xml │ │ │ └── icon_arrow_down.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── layout_tooltip.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 │ │ └── example │ │ └── framgia │ │ └── tooltipbypopupwindow │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── UnderstandConstraintLayout ├── .idea │ └── workspace.xml └── app │ └── app.iml ├── UsingLocationManager ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── framgia │ │ │ └── usinglocationmanagerexample │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── framgia │ │ │ │ └── usinglocationmanagerexample │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.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 │ │ └── example │ │ └── framgia │ │ └── usinglocationmanagerexample │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── UsingMapzenLost ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── framgia │ │ │ └── myapplication │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── framgia │ │ │ │ └── myapplication │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.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 │ │ └── example │ │ └── framgia │ │ └── myapplication │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── toong │ │ └── dialogfragmentwithlistener │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── toong │ │ │ └── dialogfragmentwithlistener │ │ │ └── MainActivity.kt │ └── res │ │ ├── layout │ │ └── activity_main.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 │ └── toong │ └── dialogfragmentwithlistener │ └── ExampleUnitTest.kt ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── lost-master ├── .github │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── LICENSE ├── README.md ├── build.gradle ├── circle.yml ├── config │ └── checkstyle │ │ ├── checkstyle.xml │ │ └── suppressions.xml ├── docs │ ├── geofences.md │ ├── getting-started.md │ ├── installation.md │ ├── last-known-location.md │ ├── location-settings.md │ ├── location-updates.md │ ├── mock-locations-routes.md │ └── upgrade-1x-2.md ├── gradle-mvn-push.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── lost │ ├── build.gradle │ ├── gradle.properties │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── aidl │ │ │ └── com │ │ │ │ └── mapzen │ │ │ │ └── android │ │ │ │ └── lost │ │ │ │ ├── api │ │ │ │ ├── LocationAvailability.aidl │ │ │ │ └── LocationRequest.aidl │ │ │ │ └── internal │ │ │ │ ├── IFusedLocationProviderCallback.aidl │ │ │ │ └── IFusedLocationProviderService.aidl │ │ ├── java │ │ │ └── com │ │ │ │ └── mapzen │ │ │ │ └── android │ │ │ │ └── lost │ │ │ │ ├── api │ │ │ │ ├── FusedLocationProviderApi.java │ │ │ │ ├── Geofence.java │ │ │ │ ├── GeofencingApi.java │ │ │ │ ├── GeofencingEvent.java │ │ │ │ ├── GeofencingIntentSender.java │ │ │ │ ├── GeofencingRequest.java │ │ │ │ ├── LocationAvailability.java │ │ │ │ ├── LocationCallback.java │ │ │ │ ├── LocationListener.java │ │ │ │ ├── LocationRequest.java │ │ │ │ ├── LocationResult.java │ │ │ │ ├── LocationServices.java │ │ │ │ ├── LocationSettingsRequest.java │ │ │ │ ├── LocationSettingsResult.java │ │ │ │ ├── LocationSettingsStates.java │ │ │ │ ├── LostApiClient.java │ │ │ │ ├── PendingResult.java │ │ │ │ ├── Result.java │ │ │ │ ├── ResultCallback.java │ │ │ │ ├── SettingsApi.java │ │ │ │ └── Status.java │ │ │ │ └── internal │ │ │ │ ├── ApiImpl.java │ │ │ │ ├── ClientManager.java │ │ │ │ ├── Clock.java │ │ │ │ ├── DialogDisplayer.java │ │ │ │ ├── DwellIntentService.java │ │ │ │ ├── DwellServiceIntentFactory.java │ │ │ │ ├── FusedLocationProviderApiImpl.java │ │ │ │ ├── FusedLocationProviderService.java │ │ │ │ ├── FusedLocationProviderServiceDelegate.java │ │ │ │ ├── FusedLocationServiceConnectionManager.java │ │ │ │ ├── FusionEngine.java │ │ │ │ ├── GeofenceIntentHelper.java │ │ │ │ ├── GeofencingApiImpl.java │ │ │ │ ├── GeofencingDwellManager.java │ │ │ │ ├── GeofencingIntentService.java │ │ │ │ ├── GeofencingServiceIntentFactory.java │ │ │ │ ├── GpxTraceThreadFactory.java │ │ │ │ ├── IdGenerator.java │ │ │ │ ├── IntentFactory.java │ │ │ │ ├── LocationEngine.java │ │ │ │ ├── LocationRequestUnbundled.java │ │ │ │ ├── LocationSettingsResultRequest.java │ │ │ │ ├── LostApiClientImpl.java │ │ │ │ ├── LostClientManager.java │ │ │ │ ├── LostClientWrapper.java │ │ │ │ ├── MockEngine.java │ │ │ │ ├── ParcelableGeofence.java │ │ │ │ ├── PendingIntentGenerator.java │ │ │ │ ├── PendingIntentIdGenerator.java │ │ │ │ ├── ReportedChanges.java │ │ │ │ ├── SettingsApiImpl.java │ │ │ │ ├── SettingsDialogDisplayer.java │ │ │ │ ├── SettingsDialogFragment.java │ │ │ │ ├── SimplePendingResult.java │ │ │ │ ├── SleepFactory.java │ │ │ │ ├── SystemClock.java │ │ │ │ ├── ThreadSleepFactory.java │ │ │ │ ├── TraceThread.java │ │ │ │ └── TraceThreadFactory.java │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── mapzen │ │ │ └── android │ │ │ └── lost │ │ │ ├── BaseRobolectricTest.java │ │ │ ├── api │ │ │ ├── GeofenceTest.java │ │ │ ├── GeofencingRequestTest.java │ │ │ ├── LocationRequestTest.java │ │ │ ├── LocationResultTest.java │ │ │ ├── LocationServicesTest.java │ │ │ ├── LocationSettingsRequestTest.java │ │ │ ├── LocationSettingsResultTest.java │ │ │ ├── LocationSettingsStateTest.java │ │ │ └── StatusTest.java │ │ │ ├── internal │ │ │ ├── DelayTestPendingIntentGenerator.java │ │ │ ├── FusedLocationProviderApiImplTest.java │ │ │ ├── FusedLocationProviderServiceDelegateTest.java │ │ │ ├── FusedLocationServiceConnectionManagerTest.java │ │ │ ├── FusionEngineTest.java │ │ │ ├── GeofencingApiTest.java │ │ │ ├── GeofencingDwellManagerTest.java │ │ │ ├── GeofencingIntentSenderTest.java │ │ │ ├── LocationSettingsResultRequestTest.java │ │ │ ├── LostApiClientImplTest.java │ │ │ ├── LostClientManagerTest.java │ │ │ ├── LostClientWrapperTest.java │ │ │ ├── MockEngineTest.java │ │ │ ├── SettingsApiImplTest.java │ │ │ ├── SimplePendingResultTest.java │ │ │ ├── SystemClockTest.java │ │ │ ├── TestClock.java │ │ │ ├── TestConnectionCallbacks.java │ │ │ ├── TestDwellIntentFactory.java │ │ │ ├── TestIntentFactory.java │ │ │ ├── TestLocationCallback.java │ │ │ ├── TestLocationListener.java │ │ │ ├── TestPendingIntentGenerator.java │ │ │ ├── TestResultCallback.java │ │ │ ├── TestServiceStub.java │ │ │ ├── TestSettingsDialogDisplayer.java │ │ │ └── TraceThreadTest.java │ │ │ └── shadows │ │ │ └── LostShadowLocationManager.java │ │ └── resources │ │ ├── lost-no-speed.gpx │ │ └── lost.gpx ├── release_checklist.md ├── scripts │ ├── deploy-javadocs.sh │ ├── deploy-snapshot.sh │ ├── deploy-staging.sh │ ├── deploy.sh │ ├── install-gpx-trace.sh │ └── release.sh └── settings.gradle └── lost-sample ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── workspace.xml ├── build.gradle ├── build └── android-profile │ ├── profile-2017-05-23-15-27-37-863.rawproto │ ├── profile-2017-05-23-15-27-55-348.rawproto │ ├── profile-2017-05-23-15-28-19-828.rawproto │ ├── profile-2017-05-23-15-28-29-573.rawproto │ ├── profile-2017-05-23-15-28-55-106.rawproto │ ├── profile-2017-05-23-15-28-56-020.rawproto │ └── profile-2017-05-23-15-29-19-391.rawproto ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties ├── settings.gradle └── src └── main ├── AndroidManifest.xml ├── java └── com │ └── example │ └── lost │ ├── FusedLocationApiActivity.java │ ├── GeofenceIntentService.java │ ├── GeofencingApiActivity.java │ ├── Item.java │ ├── ListActivity.java │ ├── LocationAvailabilityActivity.java │ ├── LocationListenerActivity.java │ ├── LostApiClientActivity.java │ ├── MainActivity.java │ ├── MultipleLocationListenerMultipleClientsActivity.java │ ├── MultipleLocationListenerSingleClientActivity.java │ ├── PendingIntentActivity.java │ ├── PendingIntentService.java │ ├── Sample.java │ ├── SampleListActivity.java │ ├── SamplesList.java │ ├── SettingsActivity.java │ ├── SettingsApiActivity.java │ └── ViewHolder.java └── res ├── drawable-hdpi └── ic_launcher.png ├── drawable-mdpi └── ic_launcher.png ├── drawable-xhdpi └── ic_launcher.png ├── drawable-xxhdpi └── ic_launcher.png ├── layout ├── activity_geofencing.xml ├── activity_list_view.xml ├── activity_location_availability.xml ├── activity_pending_intent.xml ├── activity_settings_api.xml ├── fragment_lost.xml ├── list_header.xml ├── list_item.xml └── sample_item.xml ├── menu └── menu.xml ├── values-w820dp └── dimens.xml ├── values ├── arrays.xml ├── defaults.xml ├── dimens.xml ├── strings.xml └── styles.xml └── xml └── preferences.xml /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AndroidDatabindingInterface/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /AndroidDatabindingInterface/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /AndroidDatabindingInterface/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /AndroidDatabindingInterface/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidDatabindingInterface/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidDatabindingInterface/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidDatabindingInterface/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidDatabindingInterface/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidDatabindingInterface/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidDatabindingInterface/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidDatabindingInterface/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidDatabindingInterface/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidDatabindingInterface/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidDatabindingInterface/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidDatabindingInterface/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidDatabindingInterface/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidDatabindingInterface/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidDatabindingInterface/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidDatabindingInterface/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidDatabindingInterface/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidDatabindingInterface/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidDatabindingInterface/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidDatabindingInterface/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidDatabindingInterface/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /AndroidDatabindingInterface/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | AndroidDatabindingInterface 3 | 4 | -------------------------------------------------------------------------------- /AndroidDatabindingInterface/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidDatabindingInterface/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AndroidDatabindingInterface/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Jun 01 15:29:25 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /AndroidDatabindingInterface/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /AndroidPauseResumeAnimation/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /AndroidPauseResumeAnimation/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /AndroidPauseResumeAnimation/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /AndroidPauseResumeAnimation/app/src/main/res/anim/fade.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /AndroidPauseResumeAnimation/app/src/main/res/animator/fade_in.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /AndroidPauseResumeAnimation/app/src/main/res/animator/fade_out.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /AndroidPauseResumeAnimation/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidPauseResumeAnimation/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidPauseResumeAnimation/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidPauseResumeAnimation/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidPauseResumeAnimation/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidPauseResumeAnimation/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidPauseResumeAnimation/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidPauseResumeAnimation/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidPauseResumeAnimation/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidPauseResumeAnimation/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidPauseResumeAnimation/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidPauseResumeAnimation/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidPauseResumeAnimation/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidPauseResumeAnimation/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidPauseResumeAnimation/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidPauseResumeAnimation/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidPauseResumeAnimation/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidPauseResumeAnimation/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidPauseResumeAnimation/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidPauseResumeAnimation/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidPauseResumeAnimation/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /AndroidPauseResumeAnimation/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | AndroidPauseResumeAnimation 3 | 4 | -------------------------------------------------------------------------------- /AndroidPauseResumeAnimation/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidPauseResumeAnimation/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AndroidPauseResumeAnimation/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Jun 08 07:45:06 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /AndroidPauseResumeAnimation/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /AndroidScreenRotationLifecycle/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /AndroidScreenRotationLifecycle/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /AndroidScreenRotationLifecycle/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /AndroidScreenRotationLifecycle/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidScreenRotationLifecycle/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidScreenRotationLifecycle/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidScreenRotationLifecycle/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidScreenRotationLifecycle/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidScreenRotationLifecycle/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidScreenRotationLifecycle/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidScreenRotationLifecycle/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidScreenRotationLifecycle/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidScreenRotationLifecycle/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidScreenRotationLifecycle/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidScreenRotationLifecycle/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidScreenRotationLifecycle/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidScreenRotationLifecycle/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidScreenRotationLifecycle/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidScreenRotationLifecycle/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidScreenRotationLifecycle/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidScreenRotationLifecycle/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidScreenRotationLifecycle/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidScreenRotationLifecycle/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidScreenRotationLifecycle/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /AndroidScreenRotationLifecycle/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | AndroidScreenRotationLifecycle 3 | 4 | -------------------------------------------------------------------------------- /AndroidScreenRotationLifecycle/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AndroidScreenRotationLifecycle/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AndroidScreenRotationLifecycle/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Jun 13 09:44:55 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /AndroidScreenRotationLifecycle/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /AppCompatThemeDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /AppCompatThemeDemo/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /AppCompatThemeDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /AppCompatThemeDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AppCompatThemeDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AppCompatThemeDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AppCompatThemeDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AppCompatThemeDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AppCompatThemeDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AppCompatThemeDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AppCompatThemeDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AppCompatThemeDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AppCompatThemeDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AppCompatThemeDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AppCompatThemeDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AppCompatThemeDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AppCompatThemeDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AppCompatThemeDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AppCompatThemeDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AppCompatThemeDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AppCompatThemeDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AppCompatThemeDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AppCompatThemeDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AppCompatThemeDemo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /AppCompatThemeDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | AppCompatThemeDemo 3 | 4 | -------------------------------------------------------------------------------- /AppCompatThemeDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/AppCompatThemeDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AppCompatThemeDemo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri May 19 15:10:04 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /AppCompatThemeDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /CheckBoxInRecyclerView/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /CheckBoxInRecyclerView/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /CheckBoxInRecyclerView/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /CheckBoxInRecyclerView/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/CheckBoxInRecyclerView/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /CheckBoxInRecyclerView/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/CheckBoxInRecyclerView/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CheckBoxInRecyclerView/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/CheckBoxInRecyclerView/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /CheckBoxInRecyclerView/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/CheckBoxInRecyclerView/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CheckBoxInRecyclerView/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/CheckBoxInRecyclerView/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CheckBoxInRecyclerView/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/CheckBoxInRecyclerView/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CheckBoxInRecyclerView/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/CheckBoxInRecyclerView/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CheckBoxInRecyclerView/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/CheckBoxInRecyclerView/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CheckBoxInRecyclerView/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/CheckBoxInRecyclerView/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CheckBoxInRecyclerView/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/CheckBoxInRecyclerView/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CheckBoxInRecyclerView/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /CheckBoxInRecyclerView/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | CheckBoxInRecyclerView 3 | 4 | -------------------------------------------------------------------------------- /CheckBoxInRecyclerView/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/CheckBoxInRecyclerView/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /CheckBoxInRecyclerView/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue May 16 15:38:42 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /CheckBoxInRecyclerView/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /CircularTextView/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /CircularTextView/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /CircularTextView/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CircularTextView/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /CircularTextView/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/CircularTextView/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /CircularTextView/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/CircularTextView/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CircularTextView/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/CircularTextView/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /CircularTextView/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/CircularTextView/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CircularTextView/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/CircularTextView/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CircularTextView/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/CircularTextView/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CircularTextView/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/CircularTextView/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CircularTextView/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/CircularTextView/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CircularTextView/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/CircularTextView/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CircularTextView/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/CircularTextView/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CircularTextView/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /CircularTextView/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | CircularTextView 3 | 4 | -------------------------------------------------------------------------------- /CircularTextView/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/CircularTextView/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /CircularTextView/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Apr 04 08:13:20 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /CircularTextView/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Dagger2Demo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /Dagger2Demo/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Dagger2Demo/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Dagger2Demo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Dagger2Demo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/Dagger2Demo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dagger2Demo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/Dagger2Demo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dagger2Demo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/Dagger2Demo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dagger2Demo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/Dagger2Demo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dagger2Demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/Dagger2Demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dagger2Demo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/Dagger2Demo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dagger2Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/Dagger2Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dagger2Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/Dagger2Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dagger2Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/Dagger2Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dagger2Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/Dagger2Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dagger2Demo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /Dagger2Demo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | My Application 3 | 4 | -------------------------------------------------------------------------------- /Dagger2Demo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/Dagger2Demo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Dagger2Demo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri May 12 15:31:54 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /Dagger2Demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /DemoProject/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /DemoProject/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /DemoProject/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /DemoProject/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /DemoProject/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DemoProject/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /DemoProject/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DemoProject/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DemoProject/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DemoProject/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /DemoProject/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DemoProject/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DemoProject/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DemoProject/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DemoProject/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DemoProject/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DemoProject/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DemoProject/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DemoProject/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DemoProject/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DemoProject/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DemoProject/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DemoProject/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DemoProject/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DemoProject/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /DemoProject/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | DemoProject 3 | 4 | -------------------------------------------------------------------------------- /DemoProject/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DemoProject/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /DemoProject/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Jun 14 16:39:39 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /DemoProject/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /DialogAboveOtherDialog/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /DialogAboveOtherDialog/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /DialogAboveOtherDialog/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /DialogAboveOtherDialog/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DialogAboveOtherDialog/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /DialogAboveOtherDialog/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DialogAboveOtherDialog/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DialogAboveOtherDialog/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DialogAboveOtherDialog/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /DialogAboveOtherDialog/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DialogAboveOtherDialog/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DialogAboveOtherDialog/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DialogAboveOtherDialog/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DialogAboveOtherDialog/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DialogAboveOtherDialog/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DialogAboveOtherDialog/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DialogAboveOtherDialog/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DialogAboveOtherDialog/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DialogAboveOtherDialog/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DialogAboveOtherDialog/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DialogAboveOtherDialog/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DialogAboveOtherDialog/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DialogAboveOtherDialog/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DialogAboveOtherDialog/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /DialogAboveOtherDialog/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | DialogAboveOtherDialog 3 | 4 | -------------------------------------------------------------------------------- /DialogAboveOtherDialog/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DialogAboveOtherDialog/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /DialogAboveOtherDialog/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon May 29 10:40:05 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /DialogAboveOtherDialog/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /DialogFragmentWithListener2/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /DialogFragmentWithListener2/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /DialogFragmentWithListener2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /DialogFragmentWithListener2/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DialogFragmentWithListener2/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /DialogFragmentWithListener2/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DialogFragmentWithListener2/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DialogFragmentWithListener2/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DialogFragmentWithListener2/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /DialogFragmentWithListener2/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DialogFragmentWithListener2/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DialogFragmentWithListener2/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DialogFragmentWithListener2/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DialogFragmentWithListener2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DialogFragmentWithListener2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DialogFragmentWithListener2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DialogFragmentWithListener2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DialogFragmentWithListener2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DialogFragmentWithListener2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DialogFragmentWithListener2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DialogFragmentWithListener2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DialogFragmentWithListener2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DialogFragmentWithListener2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DialogFragmentWithListener2/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /DialogFragmentWithListener2/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | DialogFragmentWithListener 3 | 4 | -------------------------------------------------------------------------------- /DialogFragmentWithListener2/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DialogFragmentWithListener2/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /DialogFragmentWithListener2/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 16 09:49:40 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /DialogFragmentWithListener2/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /DrawLineByFinger/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /DrawLineByFinger/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /DrawLineByFinger/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /DrawLineByFinger/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /DrawLineByFinger/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DrawLineByFinger/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /DrawLineByFinger/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DrawLineByFinger/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DrawLineByFinger/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DrawLineByFinger/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /DrawLineByFinger/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DrawLineByFinger/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DrawLineByFinger/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DrawLineByFinger/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DrawLineByFinger/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DrawLineByFinger/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DrawLineByFinger/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DrawLineByFinger/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DrawLineByFinger/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DrawLineByFinger/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DrawLineByFinger/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DrawLineByFinger/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DrawLineByFinger/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DrawLineByFinger/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DrawLineByFinger/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /DrawLineByFinger/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | DrawLineByFinger 3 | 4 | -------------------------------------------------------------------------------- /DrawLineByFinger/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DrawLineByFinger/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /DrawLineByFinger/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri May 05 16:18:00 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /DrawLineByFinger/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /DummyProject/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /DummyProject/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /DummyProject/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /DummyProject/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /DummyProject/app/libs/MapboxGLAndroidSDK-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DummyProject/app/libs/MapboxGLAndroidSDK-release.aar -------------------------------------------------------------------------------- /DummyProject/app/src/main/res/drawable/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DummyProject/app/src/main/res/drawable/ic_launcher.png -------------------------------------------------------------------------------- /DummyProject/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DummyProject/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /DummyProject/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DummyProject/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DummyProject/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DummyProject/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /DummyProject/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DummyProject/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DummyProject/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DummyProject/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DummyProject/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DummyProject/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DummyProject/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DummyProject/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DummyProject/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DummyProject/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DummyProject/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DummyProject/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DummyProject/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DummyProject/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DummyProject/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /DummyProject/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | DummyProject 3 | 4 | -------------------------------------------------------------------------------- /DummyProject/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/DummyProject/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /DummyProject/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 12 14:07:48 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /DummyProject/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /EspressoTest/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /EspressoTest/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /EspressoTest/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /EspressoTest/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /EspressoTest/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/EspressoTest/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /EspressoTest/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/EspressoTest/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /EspressoTest/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/EspressoTest/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /EspressoTest/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/EspressoTest/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /EspressoTest/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/EspressoTest/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /EspressoTest/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/EspressoTest/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /EspressoTest/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/EspressoTest/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /EspressoTest/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/EspressoTest/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /EspressoTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/EspressoTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /EspressoTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/EspressoTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /EspressoTest/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /EspressoTest/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | EspressoTest 3 | 4 | -------------------------------------------------------------------------------- /EspressoTest/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/EspressoTest/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /EspressoTest/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 09 14:04:49 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /EspressoTest/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /FireBaseUpdateDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /FireBaseUpdateDemo/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /FireBaseUpdateDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /FireBaseUpdateDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FireBaseUpdateDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /FireBaseUpdateDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FireBaseUpdateDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FireBaseUpdateDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FireBaseUpdateDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /FireBaseUpdateDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FireBaseUpdateDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FireBaseUpdateDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FireBaseUpdateDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FireBaseUpdateDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FireBaseUpdateDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FireBaseUpdateDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FireBaseUpdateDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FireBaseUpdateDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FireBaseUpdateDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FireBaseUpdateDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FireBaseUpdateDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FireBaseUpdateDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FireBaseUpdateDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FireBaseUpdateDemo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /FireBaseUpdateDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | FireBaseUpdateDemo 3 | 4 | -------------------------------------------------------------------------------- /FireBaseUpdateDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FireBaseUpdateDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /FireBaseUpdateDemo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Apr 04 08:27:42 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /FireBaseUpdateDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /FirebaseRecyclerAdapterMutipleViewType/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /FirebaseRecyclerAdapterMutipleViewType/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /FirebaseRecyclerAdapterMutipleViewType/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /FirebaseRecyclerAdapterMutipleViewType/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerAdapterMutipleViewType/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /FirebaseRecyclerAdapterMutipleViewType/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerAdapterMutipleViewType/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FirebaseRecyclerAdapterMutipleViewType/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerAdapterMutipleViewType/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /FirebaseRecyclerAdapterMutipleViewType/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerAdapterMutipleViewType/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FirebaseRecyclerAdapterMutipleViewType/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerAdapterMutipleViewType/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FirebaseRecyclerAdapterMutipleViewType/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerAdapterMutipleViewType/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FirebaseRecyclerAdapterMutipleViewType/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerAdapterMutipleViewType/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FirebaseRecyclerAdapterMutipleViewType/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerAdapterMutipleViewType/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FirebaseRecyclerAdapterMutipleViewType/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerAdapterMutipleViewType/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FirebaseRecyclerAdapterMutipleViewType/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerAdapterMutipleViewType/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FirebaseRecyclerAdapterMutipleViewType/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /FirebaseRecyclerAdapterMutipleViewType/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | FirebaseRecyclerAdapterMutipleViewType 3 | 4 | -------------------------------------------------------------------------------- /FirebaseRecyclerAdapterMutipleViewType/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerAdapterMutipleViewType/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /FirebaseRecyclerAdapterMutipleViewType/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Mar 30 16:02:24 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /FirebaseRecyclerAdapterMutipleViewType/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerAdapterMutipleViewType/screenshot.png -------------------------------------------------------------------------------- /FirebaseRecyclerAdapterMutipleViewType/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /FirebaseRecyclerViewWithLoadmore/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /FirebaseRecyclerViewWithLoadmore/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /FirebaseRecyclerViewWithLoadmore/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /FirebaseRecyclerViewWithLoadmore/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerViewWithLoadmore/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /FirebaseRecyclerViewWithLoadmore/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerViewWithLoadmore/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FirebaseRecyclerViewWithLoadmore/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerViewWithLoadmore/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /FirebaseRecyclerViewWithLoadmore/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerViewWithLoadmore/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FirebaseRecyclerViewWithLoadmore/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerViewWithLoadmore/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FirebaseRecyclerViewWithLoadmore/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerViewWithLoadmore/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FirebaseRecyclerViewWithLoadmore/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerViewWithLoadmore/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FirebaseRecyclerViewWithLoadmore/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerViewWithLoadmore/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FirebaseRecyclerViewWithLoadmore/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerViewWithLoadmore/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FirebaseRecyclerViewWithLoadmore/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerViewWithLoadmore/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FirebaseRecyclerViewWithLoadmore/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /FirebaseRecyclerViewWithLoadmore/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | FirebaseRecyclerViewWithLoadmore 3 | 4 | -------------------------------------------------------------------------------- /FirebaseRecyclerViewWithLoadmore/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/FirebaseRecyclerViewWithLoadmore/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /FirebaseRecyclerViewWithLoadmore/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 12 14:27:53 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /FirebaseRecyclerViewWithLoadmore/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /ListPopupWindow/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /ListPopupWindow/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /ListPopupWindow/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ListPopupWindow/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /ListPopupWindow/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/ListPopupWindow/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ListPopupWindow/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/ListPopupWindow/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ListPopupWindow/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/ListPopupWindow/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ListPopupWindow/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/ListPopupWindow/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ListPopupWindow/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/ListPopupWindow/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ListPopupWindow/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/ListPopupWindow/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ListPopupWindow/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/ListPopupWindow/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ListPopupWindow/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/ListPopupWindow/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ListPopupWindow/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/ListPopupWindow/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ListPopupWindow/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/ListPopupWindow/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ListPopupWindow/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /ListPopupWindow/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ListPopupWindow 3 | 4 | -------------------------------------------------------------------------------- /ListPopupWindow/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/ListPopupWindow/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ListPopupWindow/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Apr 27 11:28:34 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /ListPopupWindow/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /LocationUpdates/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /LocationUpdates/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /LocationUpdates/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /LocationUpdates/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /LocationUpdates/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/LocationUpdates/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /LocationUpdates/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/LocationUpdates/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LocationUpdates/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/LocationUpdates/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /LocationUpdates/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/LocationUpdates/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LocationUpdates/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/LocationUpdates/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LocationUpdates/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/LocationUpdates/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LocationUpdates/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/LocationUpdates/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LocationUpdates/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/LocationUpdates/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LocationUpdates/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/LocationUpdates/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LocationUpdates/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/LocationUpdates/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LocationUpdates/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /LocationUpdates/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | LocationUpdates 3 | 4 | -------------------------------------------------------------------------------- /LocationUpdates/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/LocationUpdates/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /LocationUpdates/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed May 24 08:39:15 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /LocationUpdates/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /LockScreenOrientation/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /LockScreenOrientation/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /LockScreenOrientation/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /LockScreenOrientation/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/LockScreenOrientation/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /LockScreenOrientation/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/LockScreenOrientation/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LockScreenOrientation/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/LockScreenOrientation/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /LockScreenOrientation/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/LockScreenOrientation/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LockScreenOrientation/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/LockScreenOrientation/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LockScreenOrientation/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/LockScreenOrientation/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LockScreenOrientation/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/LockScreenOrientation/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LockScreenOrientation/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/LockScreenOrientation/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LockScreenOrientation/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/LockScreenOrientation/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LockScreenOrientation/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/LockScreenOrientation/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LockScreenOrientation/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /LockScreenOrientation/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | LockScreenOrientation 3 | 4 | -------------------------------------------------------------------------------- /LockScreenOrientation/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/LockScreenOrientation/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /LockScreenOrientation/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Jun 13 10:39:59 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /LockScreenOrientation/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /MapBoxMapDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /MapBoxMapDemo/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /MapBoxMapDemo/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /MapBoxMapDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /MapBoxMapDemo/app/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MapBoxMapDemo/app/app-release.apk -------------------------------------------------------------------------------- /MapBoxMapDemo/app/libs/MapboxGLAndroidSDK-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MapBoxMapDemo/app/libs/MapboxGLAndroidSDK-release.aar -------------------------------------------------------------------------------- /MapBoxMapDemo/app/src/main/res/drawable/bg_rectangle.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /MapBoxMapDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MapBoxMapDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MapBoxMapDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MapBoxMapDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MapBoxMapDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MapBoxMapDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MapBoxMapDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MapBoxMapDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MapBoxMapDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MapBoxMapDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MapBoxMapDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MapBoxMapDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MapBoxMapDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MapBoxMapDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MapBoxMapDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MapBoxMapDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MapBoxMapDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MapBoxMapDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MapBoxMapDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MapBoxMapDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MapBoxMapDemo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /MapBoxMapDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MapBox Demo 3 | 4 | -------------------------------------------------------------------------------- /MapBoxMapDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MapBoxMapDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /MapBoxMapDemo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed May 10 15:55:29 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /MapBoxMapDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /MyApplication/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /MyApplication/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /MyApplication/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /MyApplication/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyApplication/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyApplication/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyApplication/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyApplication/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyApplication/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyApplication/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyApplication/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyApplication/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RecyclerViewMutilpleItemTypeSupportShowHideItemType 3 | 4 | -------------------------------------------------------------------------------- /MyApplication/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyApplication/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /MyApplication/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Apr 11 14:45:35 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /MyApplication/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':app' 2 | -------------------------------------------------------------------------------- /MyApplication2/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /MyApplication2/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /MyApplication2/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /MyApplication2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /MyApplication2/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyApplication2/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication2/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyApplication2/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyApplication2/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyApplication2/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication2/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyApplication2/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyApplication2/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyApplication2/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyApplication2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyApplication2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyApplication2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyApplication2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyApplication2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyApplication2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyApplication2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyApplication2/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /MyApplication2/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ChangeShapeDrawableColor 3 | 4 | -------------------------------------------------------------------------------- /MyApplication2/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyApplication2/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /MyApplication2/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri May 12 16:29:31 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /MyApplication2/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /MyFirstKotlin/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /MyFirstKotlin/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /MyFirstKotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /MyFirstKotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyFirstKotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyFirstKotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyFirstKotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyFirstKotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyFirstKotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyFirstKotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyFirstKotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyFirstKotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyFirstKotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyFirstKotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyFirstKotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyFirstKotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyFirstKotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyFirstKotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyFirstKotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyFirstKotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyFirstKotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyFirstKotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyFirstKotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyFirstKotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /MyFirstKotlin/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MyFirstKotlin 3 | 4 | -------------------------------------------------------------------------------- /MyFirstKotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/MyFirstKotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /MyFirstKotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 09 16:53:39 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.0-milestone-1-all.zip 7 | -------------------------------------------------------------------------------- /MyFirstKotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /NumberPickerDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /NumberPickerDemo/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /NumberPickerDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /NumberPickerDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/NumberPickerDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /NumberPickerDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/NumberPickerDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /NumberPickerDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/NumberPickerDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /NumberPickerDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/NumberPickerDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /NumberPickerDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/NumberPickerDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /NumberPickerDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/NumberPickerDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /NumberPickerDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/NumberPickerDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /NumberPickerDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/NumberPickerDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /NumberPickerDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/NumberPickerDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /NumberPickerDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/NumberPickerDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /NumberPickerDemo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /NumberPickerDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | NumberPickerDemo 3 | 4 | -------------------------------------------------------------------------------- /NumberPickerDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/NumberPickerDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /NumberPickerDemo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 05 13:22:46 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /NumberPickerDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /ParseSpannableStringViaIntent/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /ParseSpannableStringViaIntent/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /ParseSpannableStringViaIntent/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /ParseSpannableStringViaIntent/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/ParseSpannableStringViaIntent/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ParseSpannableStringViaIntent/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/ParseSpannableStringViaIntent/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ParseSpannableStringViaIntent/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/ParseSpannableStringViaIntent/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ParseSpannableStringViaIntent/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/ParseSpannableStringViaIntent/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ParseSpannableStringViaIntent/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/ParseSpannableStringViaIntent/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ParseSpannableStringViaIntent/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/ParseSpannableStringViaIntent/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ParseSpannableStringViaIntent/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/ParseSpannableStringViaIntent/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ParseSpannableStringViaIntent/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/ParseSpannableStringViaIntent/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ParseSpannableStringViaIntent/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/ParseSpannableStringViaIntent/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ParseSpannableStringViaIntent/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/ParseSpannableStringViaIntent/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ParseSpannableStringViaIntent/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /ParseSpannableStringViaIntent/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ParseSpannableStringViaIntent 3 | 4 | -------------------------------------------------------------------------------- /ParseSpannableStringViaIntent/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/ParseSpannableStringViaIntent/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ParseSpannableStringViaIntent/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Mar 30 10:10:43 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /ParseSpannableStringViaIntent/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /PreventOverdraw/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /PreventOverdraw/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /PreventOverdraw/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /PreventOverdraw/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /PreventOverdraw/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/PreventOverdraw/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /PreventOverdraw/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/PreventOverdraw/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PreventOverdraw/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/PreventOverdraw/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /PreventOverdraw/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/PreventOverdraw/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PreventOverdraw/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/PreventOverdraw/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PreventOverdraw/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/PreventOverdraw/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PreventOverdraw/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/PreventOverdraw/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PreventOverdraw/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/PreventOverdraw/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PreventOverdraw/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/PreventOverdraw/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PreventOverdraw/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/PreventOverdraw/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PreventOverdraw/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /PreventOverdraw/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | PreventOverdraw 3 | 4 | -------------------------------------------------------------------------------- /PreventOverdraw/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/PreventOverdraw/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /PreventOverdraw/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu May 25 14:30:54 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /PreventOverdraw/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /StartActivityNotFullScreen/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /StartActivityNotFullScreen/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /StartActivityNotFullScreen/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /StartActivityNotFullScreen/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/StartActivityNotFullScreen/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /StartActivityNotFullScreen/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/StartActivityNotFullScreen/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /StartActivityNotFullScreen/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/StartActivityNotFullScreen/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /StartActivityNotFullScreen/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/StartActivityNotFullScreen/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /StartActivityNotFullScreen/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/StartActivityNotFullScreen/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /StartActivityNotFullScreen/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/StartActivityNotFullScreen/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /StartActivityNotFullScreen/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/StartActivityNotFullScreen/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /StartActivityNotFullScreen/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/StartActivityNotFullScreen/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /StartActivityNotFullScreen/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/StartActivityNotFullScreen/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /StartActivityNotFullScreen/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/StartActivityNotFullScreen/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /StartActivityNotFullScreen/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /StartActivityNotFullScreen/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | StartActivityNotFullScreen 3 | 4 | -------------------------------------------------------------------------------- /StartActivityNotFullScreen/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/StartActivityNotFullScreen/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /StartActivityNotFullScreen/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Jun 08 09:18:03 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /StartActivityNotFullScreen/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /TestMap/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /TestMap/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /TestMap/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /TestMap/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /TestMap/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/TestMap/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /TestMap/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/TestMap/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TestMap/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/TestMap/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /TestMap/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/TestMap/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TestMap/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/TestMap/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TestMap/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/TestMap/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TestMap/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/TestMap/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TestMap/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/TestMap/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TestMap/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/TestMap/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TestMap/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/TestMap/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TestMap/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /TestMap/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | TestMap 3 | Map 4 | 5 | -------------------------------------------------------------------------------- /TestMap/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/TestMap/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /TestMap/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Mar 30 16:09:27 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /TestMap/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /TooltipByPopupWindow/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /TooltipByPopupWindow/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /TooltipByPopupWindow/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /TooltipByPopupWindow/app/src/main/res/drawable/bg_tooltip.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /TooltipByPopupWindow/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/TooltipByPopupWindow/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /TooltipByPopupWindow/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/TooltipByPopupWindow/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TooltipByPopupWindow/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/TooltipByPopupWindow/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /TooltipByPopupWindow/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/TooltipByPopupWindow/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TooltipByPopupWindow/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/TooltipByPopupWindow/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TooltipByPopupWindow/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/TooltipByPopupWindow/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TooltipByPopupWindow/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/TooltipByPopupWindow/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TooltipByPopupWindow/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/TooltipByPopupWindow/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TooltipByPopupWindow/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/TooltipByPopupWindow/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TooltipByPopupWindow/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/TooltipByPopupWindow/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TooltipByPopupWindow/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /TooltipByPopupWindow/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | TooltipByPopupWindow 3 | 4 | -------------------------------------------------------------------------------- /TooltipByPopupWindow/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/TooltipByPopupWindow/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /TooltipByPopupWindow/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu May 11 16:40:39 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /TooltipByPopupWindow/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /UsingLocationManager/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /UsingLocationManager/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /UsingLocationManager/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /UsingLocationManager/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/UsingLocationManager/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /UsingLocationManager/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/UsingLocationManager/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UsingLocationManager/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/UsingLocationManager/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /UsingLocationManager/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/UsingLocationManager/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UsingLocationManager/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/UsingLocationManager/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /UsingLocationManager/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/UsingLocationManager/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UsingLocationManager/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/UsingLocationManager/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /UsingLocationManager/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/UsingLocationManager/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UsingLocationManager/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/UsingLocationManager/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /UsingLocationManager/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/UsingLocationManager/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UsingLocationManager/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /UsingLocationManager/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | UsingLocationManagerExample 3 | 4 | -------------------------------------------------------------------------------- /UsingLocationManager/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/UsingLocationManager/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /UsingLocationManager/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon May 08 14:34:26 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /UsingLocationManager/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /UsingMapzenLost/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /UsingMapzenLost/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /UsingMapzenLost/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /UsingMapzenLost/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /UsingMapzenLost/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/UsingMapzenLost/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /UsingMapzenLost/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/UsingMapzenLost/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UsingMapzenLost/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/UsingMapzenLost/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /UsingMapzenLost/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/UsingMapzenLost/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UsingMapzenLost/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/UsingMapzenLost/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /UsingMapzenLost/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/UsingMapzenLost/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UsingMapzenLost/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/UsingMapzenLost/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /UsingMapzenLost/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/UsingMapzenLost/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UsingMapzenLost/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/UsingMapzenLost/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /UsingMapzenLost/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/UsingMapzenLost/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UsingMapzenLost/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /UsingMapzenLost/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | My Application 3 | 4 | -------------------------------------------------------------------------------- /UsingMapzenLost/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/UsingMapzenLost/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /UsingMapzenLost/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue May 23 15:42:42 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /UsingMapzenLost/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | DialogFragmentWithListener 3 | 4 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 16 09:44:07 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.0-milestone-1-all.zip 7 | -------------------------------------------------------------------------------- /lost-master/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ### Description 2 | 3 | ### Steps to Reproduce 4 | 5 | ### Lost & Android Version 6 | -------------------------------------------------------------------------------- /lost-master/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ### Overview 2 | 3 | ### Proposed Changes 4 | -------------------------------------------------------------------------------- /lost-master/.gitignore: -------------------------------------------------------------------------------- 1 | # Maven 2 | target/ 3 | pom.xml.* 4 | release.properties 5 | gen-external-apklibs/ 6 | 7 | # gradle artifacts 8 | .gradle/ 9 | 10 | # IntelliJ 11 | out/ 12 | .idea/ 13 | *.iml 14 | classes 15 | 16 | # Mac 17 | .DS_Store 18 | 19 | # Misc 20 | tmp/ 21 | *.*~ 22 | *.apk 23 | com_crashlytics_export_strings.xml 24 | build 25 | 26 | # android sdk deployer 27 | local.properties 28 | -------------------------------------------------------------------------------- /lost-master/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/lost-master/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /lost-master/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu May 18 11:18:30 MDT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /lost-master/lost/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=lost 2 | 3 | POM_NAME=Lost 4 | POM_PACKAGING=aar 5 | POM_DESCRIPTION=Lost - Location Open Source Tracker for Android 6 | -------------------------------------------------------------------------------- /lost-master/lost/src/main/aidl/com/mapzen/android/lost/api/LocationAvailability.aidl: -------------------------------------------------------------------------------- 1 | package com.mapzen.android.lost.api; 2 | 3 | parcelable LocationAvailability; 4 | -------------------------------------------------------------------------------- /lost-master/lost/src/main/aidl/com/mapzen/android/lost/api/LocationRequest.aidl: -------------------------------------------------------------------------------- 1 | package com.mapzen.android.lost.api; 2 | 3 | parcelable LocationRequest; 4 | -------------------------------------------------------------------------------- /lost-master/lost/src/main/aidl/com/mapzen/android/lost/internal/IFusedLocationProviderCallback.aidl: -------------------------------------------------------------------------------- 1 | package com.mapzen.android.lost.internal; 2 | 3 | import com.mapzen.android.lost.api.LocationAvailability; 4 | 5 | interface IFusedLocationProviderCallback { 6 | 7 | void onLocationChanged(in Location location); 8 | 9 | void onLocationAvailabilityChanged(in LocationAvailability locationAvailability); 10 | } 11 | -------------------------------------------------------------------------------- /lost-master/lost/src/main/java/com/mapzen/android/lost/api/Result.java: -------------------------------------------------------------------------------- 1 | package com.mapzen.android.lost.api; 2 | 3 | public interface Result { 4 | Status getStatus(); 5 | } 6 | -------------------------------------------------------------------------------- /lost-master/lost/src/main/java/com/mapzen/android/lost/internal/Clock.java: -------------------------------------------------------------------------------- 1 | package com.mapzen.android.lost.internal; 2 | 3 | public interface Clock { 4 | long getCurrentTimeInMillis(); 5 | } 6 | -------------------------------------------------------------------------------- /lost-master/lost/src/main/java/com/mapzen/android/lost/internal/IdGenerator.java: -------------------------------------------------------------------------------- 1 | package com.mapzen.android.lost.internal; 2 | 3 | public interface IdGenerator { 4 | int generateId(); 5 | } 6 | -------------------------------------------------------------------------------- /lost-master/lost/src/main/java/com/mapzen/android/lost/internal/PendingIntentIdGenerator.java: -------------------------------------------------------------------------------- 1 | package com.mapzen.android.lost.internal; 2 | 3 | public class PendingIntentIdGenerator implements IdGenerator { 4 | @Override public int generateId() { 5 | return (int) System.currentTimeMillis(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /lost-master/lost/src/main/java/com/mapzen/android/lost/internal/SleepFactory.java: -------------------------------------------------------------------------------- 1 | package com.mapzen.android.lost.internal; 2 | 3 | interface SleepFactory { 4 | void sleep(long millis); 5 | } 6 | -------------------------------------------------------------------------------- /lost-master/lost/src/main/java/com/mapzen/android/lost/internal/ThreadSleepFactory.java: -------------------------------------------------------------------------------- 1 | package com.mapzen.android.lost.internal; 2 | 3 | class ThreadSleepFactory implements SleepFactory { 4 | @Override public void sleep(long millis) { 5 | try { 6 | Thread.sleep(millis); 7 | } catch (InterruptedException e) { 8 | e.printStackTrace(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /lost-master/lost/src/main/java/com/mapzen/android/lost/internal/TraceThreadFactory.java: -------------------------------------------------------------------------------- 1 | package com.mapzen.android.lost.internal; 2 | 3 | import android.content.Context; 4 | 5 | import java.io.File; 6 | 7 | public interface TraceThreadFactory { 8 | TraceThread createTraceThread(Context context, File traceFile, MockEngine engine, 9 | SleepFactory sleepFactory); 10 | } 11 | -------------------------------------------------------------------------------- /lost-master/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':lost', ':lost-sample' 2 | -------------------------------------------------------------------------------- /lost-sample/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /lost-sample/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /lost-sample/build/android-profile/profile-2017-05-23-15-27-37-863.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/lost-sample/build/android-profile/profile-2017-05-23-15-27-37-863.rawproto -------------------------------------------------------------------------------- /lost-sample/build/android-profile/profile-2017-05-23-15-27-55-348.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/lost-sample/build/android-profile/profile-2017-05-23-15-27-55-348.rawproto -------------------------------------------------------------------------------- /lost-sample/build/android-profile/profile-2017-05-23-15-28-19-828.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/lost-sample/build/android-profile/profile-2017-05-23-15-28-19-828.rawproto -------------------------------------------------------------------------------- /lost-sample/build/android-profile/profile-2017-05-23-15-28-29-573.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/lost-sample/build/android-profile/profile-2017-05-23-15-28-29-573.rawproto -------------------------------------------------------------------------------- /lost-sample/build/android-profile/profile-2017-05-23-15-28-55-106.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/lost-sample/build/android-profile/profile-2017-05-23-15-28-55-106.rawproto -------------------------------------------------------------------------------- /lost-sample/build/android-profile/profile-2017-05-23-15-28-56-020.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/lost-sample/build/android-profile/profile-2017-05-23-15-28-56-020.rawproto -------------------------------------------------------------------------------- /lost-sample/build/android-profile/profile-2017-05-23-15-29-19-391.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/lost-sample/build/android-profile/profile-2017-05-23-15-29-19-391.rawproto -------------------------------------------------------------------------------- /lost-sample/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=lost-sample 2 | 3 | POM_NAME=Lost Sample 4 | POM_PACKAGING=apk 5 | POM_DESCRIPTION=Lost - Location Open Source Tracker for Android (sample app) 6 | -------------------------------------------------------------------------------- /lost-sample/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/lost-sample/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /lost-sample/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue May 23 15:27:40 ICT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /lost-sample/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'lost-sample' 2 | -------------------------------------------------------------------------------- /lost-sample/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/lost-sample/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /lost-sample/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/lost-sample/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /lost-sample/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/lost-sample/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /lost-sample/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhanVanLinh/StackOverFlowDemo/012750e7522d3103677b6d727c2609a1d25ca53f/lost-sample/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /lost-sample/src/main/res/layout/activity_list_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /lost-sample/src/main/res/layout/fragment_lost.xml: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /lost-sample/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 64dp 4 | 5 | 6 | -------------------------------------------------------------------------------- /lost-sample/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | 7 | -------------------------------------------------------------------------------- /lost-sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |