├── .gitignore ├── .idea └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── sjy │ │ └── presentdemo │ │ ├── MainActivity.java │ │ ├── MyPresentation.java │ │ └── MyPresentation2.java │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ ├── airplay.png │ ├── black.jpg │ ├── control_1.png │ ├── control_2.png │ ├── ic_launcher_background.xml │ ├── icon.png │ ├── pause.png │ ├── play.png │ ├── play_next.png │ └── play_pre.png │ ├── layout │ ├── act_main.xml │ ├── ly_display1.xml │ └── ly_display2.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ └── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/sjy/presentdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/java/com/sjy/presentdemo/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/sjy/presentdemo/MyPresentation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/java/com/sjy/presentdemo/MyPresentation.java -------------------------------------------------------------------------------- /app/src/main/java/com/sjy/presentdemo/MyPresentation2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/java/com/sjy/presentdemo/MyPresentation2.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/airplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/drawable/airplay.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/drawable/black.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/control_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/drawable/control_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/control_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/drawable/control_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/drawable/icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/drawable/pause.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/drawable/play.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/play_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/drawable/play_next.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/play_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/drawable/play_pre.png -------------------------------------------------------------------------------- /app/src/main/res/layout/act_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/layout/act_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/ly_display1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/layout/ly_display1.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/ly_display2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/layout/ly_display2.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/66668/AndroidPresentationDemo/HEAD/settings.gradle --------------------------------------------------------------------------------