├── .gitignore ├── README.md ├── README_CN.md ├── apk └── demo.apk ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── lauzy │ │ └── freedom │ │ └── lyricview │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── Rolling In The Deep.mp3 │ │ └── Rolling in the Deep-Adele.lrc │ ├── java │ │ └── com │ │ │ └── lauzy │ │ │ └── freedom │ │ │ └── lyricview │ │ │ └── MainActivity.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ └── play_music.png │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── lauzy │ └── freedom │ └── lyricview │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── lauzy │ │ └── freedom │ │ └── library │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── lauzy │ │ │ └── freedom │ │ │ └── library │ │ │ ├── Lrc.java │ │ │ ├── LrcHelper.java │ │ │ └── LrcView.java │ └── res │ │ ├── drawable-xhdpi │ │ └── play_icon.png │ │ └── values │ │ ├── attrs.xml │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── lauzy │ └── freedom │ └── library │ └── ExampleUnitTest.java ├── screenshots ├── 20180428_LyricView_screen_shot_01.png └── 20180428_LyricView_screen_shot_02.png ├── settings.gradle └── test.jks /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/README_CN.md -------------------------------------------------------------------------------- /apk/demo.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/apk/demo.apk -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/lauzy/freedom/lyricview/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/src/androidTest/java/com/lauzy/freedom/lyricview/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/Rolling In The Deep.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/src/main/assets/Rolling In The Deep.mp3 -------------------------------------------------------------------------------- /app/src/main/assets/Rolling in the Deep-Adele.lrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/src/main/assets/Rolling in the Deep-Adele.lrc -------------------------------------------------------------------------------- /app/src/main/java/com/lauzy/freedom/lyricview/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/src/main/java/com/lauzy/freedom/lyricview/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/play_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/src/main/res/drawable/play_music.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/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/Lauzy/LyricView/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/Lauzy/LyricView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/lauzy/freedom/lyricview/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/app/src/test/java/com/lauzy/freedom/lyricview/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/library/proguard-rules.pro -------------------------------------------------------------------------------- /library/src/androidTest/java/com/lauzy/freedom/library/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/library/src/androidTest/java/com/lauzy/freedom/library/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/java/com/lauzy/freedom/library/Lrc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/library/src/main/java/com/lauzy/freedom/library/Lrc.java -------------------------------------------------------------------------------- /library/src/main/java/com/lauzy/freedom/library/LrcHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/library/src/main/java/com/lauzy/freedom/library/LrcHelper.java -------------------------------------------------------------------------------- /library/src/main/java/com/lauzy/freedom/library/LrcView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/library/src/main/java/com/lauzy/freedom/library/LrcView.java -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/play_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/library/src/main/res/drawable-xhdpi/play_icon.png -------------------------------------------------------------------------------- /library/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/library/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /library/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/library/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /library/src/test/java/com/lauzy/freedom/library/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/library/src/test/java/com/lauzy/freedom/library/ExampleUnitTest.java -------------------------------------------------------------------------------- /screenshots/20180428_LyricView_screen_shot_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/screenshots/20180428_LyricView_screen_shot_01.png -------------------------------------------------------------------------------- /screenshots/20180428_LyricView_screen_shot_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/screenshots/20180428_LyricView_screen_shot_02.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':library' 2 | -------------------------------------------------------------------------------- /test.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauzy/LyricView/HEAD/test.jks --------------------------------------------------------------------------------