├── .gitattributes ├── .gitignore ├── README.md ├── Screenshot_2016-07-14-14-30-59-237_com.miui.home.png ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── syhd │ │ └── customshotview │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── syhd │ │ │ └── customshotview │ │ │ ├── FxService.java │ │ │ ├── MainActivity.java │ │ │ └── ShotActivity.java │ └── res │ │ ├── drawable │ │ └── ic_trash_action.png │ │ ├── layout │ │ ├── activity_shot.xml │ │ ├── float_layout.xml │ │ └── main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-v19 │ │ └── styles.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── syhd │ └── customshotview │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot_2016-07-14-14-30-59-237_com.miui.home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/Screenshot_2016-07-14-14-30-59-237_com.miui.home.png -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/syhd/customshotview/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/src/androidTest/java/com/syhd/customshotview/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/syhd/customshotview/FxService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/src/main/java/com/syhd/customshotview/FxService.java -------------------------------------------------------------------------------- /app/src/main/java/com/syhd/customshotview/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/src/main/java/com/syhd/customshotview/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/syhd/customshotview/ShotActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/src/main/java/com/syhd/customshotview/ShotActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_trash_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/src/main/res/drawable/ic_trash_action.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_shot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/src/main/res/layout/activity_shot.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/float_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/src/main/res/layout/float_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/src/main/res/layout/main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-v19/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/src/main/res/values-v19/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/syhd/customshotview/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/app/src/test/java/com/syhd/customshotview/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbaokun/FloatingViewService/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------