├── .gitattributes ├── .gitignore ├── LrcDemo ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── ic_launcher-web.png ├── libs │ └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_player_seeker.png │ │ └── jay.jpg │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── drawable │ │ ├── layer_list_progrssbar_play_bottom.xml │ │ ├── layer_list_thumb_playing_default.xml │ │ ├── layer_list_thumb_playing_press.xml │ │ ├── selector_btn.xml │ │ ├── selector_progress_bar_playing.xml │ │ ├── shape_btn_n.xml │ │ ├── shape_btn_p.xml │ │ ├── shape_btn_u.xml │ │ └── shape_toast_bg.xml │ ├── layout │ │ ├── activity_main.xml │ │ ├── seekbar.xml │ │ └── toast.xml │ ├── menu │ │ └── main.xml │ ├── raw │ │ ├── hs.lrc │ │ └── huasha.mp3 │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values-sw720dp-land │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── lg │ └── lrcdemo │ └── MainActivity.java └── LrcView-master ├── .classpath ├── .project ├── .settings ├── org.eclipse.core.resources.prefs └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── ic_launcher-web.png ├── libs └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src └── com └── lg └── lrcview_master ├── DefaultLrcParser.java ├── ILrcParser.java ├── ILrcView.java ├── LrcRow.java └── LrcView.java /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/.gitignore -------------------------------------------------------------------------------- /LrcDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/.classpath -------------------------------------------------------------------------------- /LrcDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/.project -------------------------------------------------------------------------------- /LrcDemo/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /LrcDemo/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /LrcDemo/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/AndroidManifest.xml -------------------------------------------------------------------------------- /LrcDemo/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/ic_launcher-web.png -------------------------------------------------------------------------------- /LrcDemo/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/libs/android-support-v4.jar -------------------------------------------------------------------------------- /LrcDemo/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/proguard-project.txt -------------------------------------------------------------------------------- /LrcDemo/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/project.properties -------------------------------------------------------------------------------- /LrcDemo/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /LrcDemo/res/drawable-hdpi/ic_player_seeker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/drawable-hdpi/ic_player_seeker.png -------------------------------------------------------------------------------- /LrcDemo/res/drawable-hdpi/jay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/drawable-hdpi/jay.jpg -------------------------------------------------------------------------------- /LrcDemo/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /LrcDemo/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LrcDemo/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LrcDemo/res/drawable/layer_list_progrssbar_play_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/drawable/layer_list_progrssbar_play_bottom.xml -------------------------------------------------------------------------------- /LrcDemo/res/drawable/layer_list_thumb_playing_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/drawable/layer_list_thumb_playing_default.xml -------------------------------------------------------------------------------- /LrcDemo/res/drawable/layer_list_thumb_playing_press.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/drawable/layer_list_thumb_playing_press.xml -------------------------------------------------------------------------------- /LrcDemo/res/drawable/selector_btn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/drawable/selector_btn.xml -------------------------------------------------------------------------------- /LrcDemo/res/drawable/selector_progress_bar_playing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/drawable/selector_progress_bar_playing.xml -------------------------------------------------------------------------------- /LrcDemo/res/drawable/shape_btn_n.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/drawable/shape_btn_n.xml -------------------------------------------------------------------------------- /LrcDemo/res/drawable/shape_btn_p.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/drawable/shape_btn_p.xml -------------------------------------------------------------------------------- /LrcDemo/res/drawable/shape_btn_u.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/drawable/shape_btn_u.xml -------------------------------------------------------------------------------- /LrcDemo/res/drawable/shape_toast_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/drawable/shape_toast_bg.xml -------------------------------------------------------------------------------- /LrcDemo/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/layout/activity_main.xml -------------------------------------------------------------------------------- /LrcDemo/res/layout/seekbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/layout/seekbar.xml -------------------------------------------------------------------------------- /LrcDemo/res/layout/toast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/layout/toast.xml -------------------------------------------------------------------------------- /LrcDemo/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/menu/main.xml -------------------------------------------------------------------------------- /LrcDemo/res/raw/hs.lrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/raw/hs.lrc -------------------------------------------------------------------------------- /LrcDemo/res/raw/huasha.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/raw/huasha.mp3 -------------------------------------------------------------------------------- /LrcDemo/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /LrcDemo/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /LrcDemo/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/values-v11/styles.xml -------------------------------------------------------------------------------- /LrcDemo/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/values-v14/styles.xml -------------------------------------------------------------------------------- /LrcDemo/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/values/dimens.xml -------------------------------------------------------------------------------- /LrcDemo/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/values/strings.xml -------------------------------------------------------------------------------- /LrcDemo/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/res/values/styles.xml -------------------------------------------------------------------------------- /LrcDemo/src/com/lg/lrcdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcDemo/src/com/lg/lrcdemo/MainActivity.java -------------------------------------------------------------------------------- /LrcView-master/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcView-master/.classpath -------------------------------------------------------------------------------- /LrcView-master/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcView-master/.project -------------------------------------------------------------------------------- /LrcView-master/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /LrcView-master/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcView-master/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /LrcView-master/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcView-master/AndroidManifest.xml -------------------------------------------------------------------------------- /LrcView-master/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcView-master/ic_launcher-web.png -------------------------------------------------------------------------------- /LrcView-master/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcView-master/libs/android-support-v4.jar -------------------------------------------------------------------------------- /LrcView-master/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcView-master/proguard-project.txt -------------------------------------------------------------------------------- /LrcView-master/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcView-master/project.properties -------------------------------------------------------------------------------- /LrcView-master/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcView-master/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /LrcView-master/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcView-master/res/values/dimens.xml -------------------------------------------------------------------------------- /LrcView-master/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcView-master/res/values/strings.xml -------------------------------------------------------------------------------- /LrcView-master/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcView-master/res/values/styles.xml -------------------------------------------------------------------------------- /LrcView-master/src/com/lg/lrcview_master/DefaultLrcParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcView-master/src/com/lg/lrcview_master/DefaultLrcParser.java -------------------------------------------------------------------------------- /LrcView-master/src/com/lg/lrcview_master/ILrcParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcView-master/src/com/lg/lrcview_master/ILrcParser.java -------------------------------------------------------------------------------- /LrcView-master/src/com/lg/lrcview_master/ILrcView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcView-master/src/com/lg/lrcview_master/ILrcView.java -------------------------------------------------------------------------------- /LrcView-master/src/com/lg/lrcview_master/LrcRow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcView-master/src/com/lg/lrcview_master/LrcRow.java -------------------------------------------------------------------------------- /LrcView-master/src/com/lg/lrcview_master/LrcView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-lili/CustomLrcView-master/HEAD/LrcView-master/src/com/lg/lrcview_master/LrcView.java --------------------------------------------------------------------------------