├── .gitignore ├── .idea ├── gradle.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml ├── smartfox_info.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── layuva │ │ └── android │ │ └── demo │ │ └── chatdemo │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── ilike │ │ │ └── voice │ │ │ ├── adapter │ │ │ └── EaseMessageAdapter.java │ │ │ ├── model │ │ │ └── MessageBean.java │ │ │ ├── service │ │ │ └── PlayService.java │ │ │ ├── ui │ │ │ └── TestVoiceActivity.java │ │ │ └── utils │ │ │ ├── AppCache.java │ │ │ ├── ScreenUtils.java │ │ │ └── TimeUtils.java │ └── res │ │ ├── drawable-hdpi │ │ ├── ease_chatto_bg_focused.9.png │ │ ├── ease_chatto_bg_normal.9.png │ │ ├── ease_chatto_voice_playing.png │ │ └── ease_default_avatar.png │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ease_chatto_bg.xml │ │ ├── ease_timestampe_bg.xml │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_test.xml │ │ └── ease_row_sent_voice.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 │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── layuva │ └── android │ └── demo │ └── chatdemo │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── image ├── posche.svga ├── recordingView.jpg ├── rose_1.5.0.svga ├── undefined.svga └── voicerecorder2.gif ├── settings.gradle └── voicerecorder ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src └── main ├── AndroidManifest.xml ├── java └── com │ └── ilike │ └── voicerecorder │ ├── core │ └── VoiceRecorder.java │ ├── utils │ ├── CommonUtils.java │ ├── EMError.java │ ├── PathUtil.java │ └── VoiceProvider.java │ └── widget │ ├── VoicePlayClickListener.java │ └── VoiceRecorderView.java └── res ├── drawable-hdpi ├── ease_chatto_voice_playing.png ├── ease_chatto_voice_playing_f1.png ├── ease_chatto_voice_playing_f2.png ├── ease_chatto_voice_playing_f3.png ├── ease_record_animate_01.png ├── ease_record_animate_02.png ├── ease_record_animate_03.png ├── ease_record_animate_04.png ├── ease_record_animate_05.png ├── ease_record_animate_06.png ├── ease_record_animate_07.png ├── ease_record_animate_08.png ├── ease_record_animate_09.png ├── ease_record_animate_10.png ├── ease_record_animate_11.png ├── ease_record_animate_12.png ├── ease_record_animate_13.png └── ease_record_animate_14.png ├── drawable ├── ease_recording_hint_bg.xml ├── ease_recording_text_hint_bg.xml └── voice_to_icon.xml ├── layout └── ease_widget_voice_recorder.xml └── values ├── attrs.xml ├── colors.xml ├── dimens.xml ├── strings.xml └── styles.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/smartfox_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/.idea/smartfox_info.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/layuva/android/demo/chatdemo/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/androidTest/java/com/layuva/android/demo/chatdemo/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/ilike/voice/adapter/EaseMessageAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/java/com/ilike/voice/adapter/EaseMessageAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/ilike/voice/model/MessageBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/java/com/ilike/voice/model/MessageBean.java -------------------------------------------------------------------------------- /app/src/main/java/com/ilike/voice/service/PlayService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/java/com/ilike/voice/service/PlayService.java -------------------------------------------------------------------------------- /app/src/main/java/com/ilike/voice/ui/TestVoiceActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/java/com/ilike/voice/ui/TestVoiceActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/ilike/voice/utils/AppCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/java/com/ilike/voice/utils/AppCache.java -------------------------------------------------------------------------------- /app/src/main/java/com/ilike/voice/utils/ScreenUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/java/com/ilike/voice/utils/ScreenUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/ilike/voice/utils/TimeUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/java/com/ilike/voice/utils/TimeUtils.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ease_chatto_bg_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/drawable-hdpi/ease_chatto_bg_focused.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ease_chatto_bg_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/drawable-hdpi/ease_chatto_bg_normal.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ease_chatto_voice_playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/drawable-hdpi/ease_chatto_voice_playing.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ease_default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/drawable-hdpi/ease_default_avatar.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ease_chatto_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/drawable/ease_chatto_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ease_timestampe_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/drawable/ease_timestampe_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/layout/activity_test.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/ease_row_sent_voice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/layout/ease_row_sent_voice.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/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/wangshanhai/VoiceRecorder/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/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/layuva/android/demo/chatdemo/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/app/src/test/java/com/layuva/android/demo/chatdemo/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/gradlew.bat -------------------------------------------------------------------------------- /image/posche.svga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/image/posche.svga -------------------------------------------------------------------------------- /image/recordingView.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/image/recordingView.jpg -------------------------------------------------------------------------------- /image/rose_1.5.0.svga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/image/rose_1.5.0.svga -------------------------------------------------------------------------------- /image/undefined.svga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/image/undefined.svga -------------------------------------------------------------------------------- /image/voicerecorder2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/image/voicerecorder2.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':voicerecorder' 2 | -------------------------------------------------------------------------------- /voicerecorder/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /voicerecorder/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/build.gradle -------------------------------------------------------------------------------- /voicerecorder/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/proguard-rules.pro -------------------------------------------------------------------------------- /voicerecorder/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /voicerecorder/src/main/java/com/ilike/voicerecorder/core/VoiceRecorder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/java/com/ilike/voicerecorder/core/VoiceRecorder.java -------------------------------------------------------------------------------- /voicerecorder/src/main/java/com/ilike/voicerecorder/utils/CommonUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/java/com/ilike/voicerecorder/utils/CommonUtils.java -------------------------------------------------------------------------------- /voicerecorder/src/main/java/com/ilike/voicerecorder/utils/EMError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/java/com/ilike/voicerecorder/utils/EMError.java -------------------------------------------------------------------------------- /voicerecorder/src/main/java/com/ilike/voicerecorder/utils/PathUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/java/com/ilike/voicerecorder/utils/PathUtil.java -------------------------------------------------------------------------------- /voicerecorder/src/main/java/com/ilike/voicerecorder/utils/VoiceProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/java/com/ilike/voicerecorder/utils/VoiceProvider.java -------------------------------------------------------------------------------- /voicerecorder/src/main/java/com/ilike/voicerecorder/widget/VoicePlayClickListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/java/com/ilike/voicerecorder/widget/VoicePlayClickListener.java -------------------------------------------------------------------------------- /voicerecorder/src/main/java/com/ilike/voicerecorder/widget/VoiceRecorderView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/java/com/ilike/voicerecorder/widget/VoiceRecorderView.java -------------------------------------------------------------------------------- /voicerecorder/src/main/res/drawable-hdpi/ease_chatto_voice_playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/drawable-hdpi/ease_chatto_voice_playing.png -------------------------------------------------------------------------------- /voicerecorder/src/main/res/drawable-hdpi/ease_chatto_voice_playing_f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/drawable-hdpi/ease_chatto_voice_playing_f1.png -------------------------------------------------------------------------------- /voicerecorder/src/main/res/drawable-hdpi/ease_chatto_voice_playing_f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/drawable-hdpi/ease_chatto_voice_playing_f2.png -------------------------------------------------------------------------------- /voicerecorder/src/main/res/drawable-hdpi/ease_chatto_voice_playing_f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/drawable-hdpi/ease_chatto_voice_playing_f3.png -------------------------------------------------------------------------------- /voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_01.png -------------------------------------------------------------------------------- /voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_02.png -------------------------------------------------------------------------------- /voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_03.png -------------------------------------------------------------------------------- /voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_04.png -------------------------------------------------------------------------------- /voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_05.png -------------------------------------------------------------------------------- /voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_06.png -------------------------------------------------------------------------------- /voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_07.png -------------------------------------------------------------------------------- /voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_08.png -------------------------------------------------------------------------------- /voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_09.png -------------------------------------------------------------------------------- /voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_10.png -------------------------------------------------------------------------------- /voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_11.png -------------------------------------------------------------------------------- /voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_12.png -------------------------------------------------------------------------------- /voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_13.png -------------------------------------------------------------------------------- /voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/drawable-hdpi/ease_record_animate_14.png -------------------------------------------------------------------------------- /voicerecorder/src/main/res/drawable/ease_recording_hint_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/drawable/ease_recording_hint_bg.xml -------------------------------------------------------------------------------- /voicerecorder/src/main/res/drawable/ease_recording_text_hint_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/drawable/ease_recording_text_hint_bg.xml -------------------------------------------------------------------------------- /voicerecorder/src/main/res/drawable/voice_to_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/drawable/voice_to_icon.xml -------------------------------------------------------------------------------- /voicerecorder/src/main/res/layout/ease_widget_voice_recorder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/layout/ease_widget_voice_recorder.xml -------------------------------------------------------------------------------- /voicerecorder/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /voicerecorder/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /voicerecorder/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /voicerecorder/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /voicerecorder/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangshanhai/VoiceRecorder/HEAD/voicerecorder/src/main/res/values/styles.xml --------------------------------------------------------------------------------