├── .gitignore ├── Chatting ├── .gitignore ├── AndroidManifest.xml ├── LICENSE ├── README.md ├── build.gradle ├── libs │ ├── arm64-v8a │ │ └── libjpush211.so │ ├── armeabi-v7a │ │ └── libjpush211.so │ ├── armeabi │ │ └── libjpush211.so │ ├── eventbus.jar │ ├── jmessage-android-1.2.1.jar │ ├── mips │ │ └── libjpush211.so │ ├── mips64 │ │ └── libjpush211.so │ ├── nineoldandroids-2.4.0.jar │ ├── picasso-2.4.0.jar │ ├── x86 │ │ └── libjpush211.so │ └── x86_64 │ │ └── libjpush211.so ├── proguard-rules.pro ├── res │ ├── anim │ │ ├── jmui_rotate.xml │ │ ├── jmui_slide_in_from_left.xml │ │ ├── jmui_slide_in_from_right.xml │ │ ├── jmui_slide_out_to_left.xml │ │ ├── jmui_slide_out_to_right.xml │ │ ├── jmui_voice_receive.xml │ │ └── jmui_voice_send.xml │ ├── drawable-hdpi │ │ ├── ic_launcher.png │ │ ├── jmui_loading_1.png │ │ ├── jmui_loading_10.png │ │ ├── jmui_loading_11.png │ │ ├── jmui_loading_12.png │ │ ├── jmui_loading_13.png │ │ ├── jmui_loading_14.png │ │ ├── jmui_loading_2.png │ │ ├── jmui_loading_3.png │ │ ├── jmui_loading_4.png │ │ ├── jmui_loading_5.png │ │ ├── jmui_loading_6.png │ │ ├── jmui_loading_7.png │ │ ├── jmui_loading_8.png │ │ └── jmui_loading_9.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ ├── ic_launcher.png │ │ ├── jmui_back_btn.png │ │ ├── jmui_business_card.png │ │ ├── jmui_cancel_record.png │ │ ├── jmui_chat_detail.png │ │ ├── jmui_expression1.png │ │ ├── jmui_fetch_failed.png │ │ ├── jmui_group.png │ │ ├── jmui_head_icon.png │ │ ├── jmui_keyboard.png │ │ ├── jmui_location.png │ │ ├── jmui_mic_1.png │ │ ├── jmui_mic_2.png │ │ ├── jmui_mic_3.png │ │ ├── jmui_mic_4.png │ │ ├── jmui_mic_5.png │ │ ├── jmui_more_menu.png │ │ ├── jmui_pick_picture.png │ │ ├── jmui_picture_not_found.png │ │ ├── jmui_receive_1.png │ │ ├── jmui_receive_2.png │ │ ├── jmui_receive_3.png │ │ ├── jmui_receive_msg.9.png │ │ ├── jmui_send_1.png │ │ ├── jmui_send_2.png │ │ ├── jmui_send_3.png │ │ ├── jmui_send_error.png │ │ ├── jmui_send_msg.9.png │ │ ├── jmui_sending_img.png │ │ ├── jmui_take_photo.png │ │ ├── jmui_video.png │ │ ├── jmui_voice.png │ │ └── jmui_voice_unread.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── drawable-xxxhdpi │ │ └── ic_launcher.png │ ├── drawable │ │ ├── jmui_back_btn_bg.xml │ │ ├── jmui_chat_input_bg.xml │ │ ├── jmui_dialog_bottom_btn_bg.xml │ │ ├── jmui_dialog_bottom_left_btn.xml │ │ ├── jmui_dialog_bottom_right_btn.xml │ │ ├── jmui_dialog_default_bg.xml │ │ ├── jmui_dialog_top_btn_bg.xml │ │ ├── jmui_list_item_bg.xml │ │ ├── jmui_loading.xml │ │ ├── jmui_msg_receive_bg.xml │ │ ├── jmui_msg_send_bg.xml │ │ ├── jmui_register_btn_bg.xml │ │ ├── jmui_round_background.xml │ │ ├── jmui_send_picture_btn_bg.xml │ │ ├── jmui_text_cursor_bg.xml │ │ ├── jmui_toast_default_bg.xml │ │ └── jmui_voice_bg.xml │ ├── layout │ │ ├── jmui_activity_about.xml │ │ ├── jmui_activity_chat.xml │ │ ├── jmui_activity_main.xml │ │ ├── jmui_chat_item_group_change.xml │ │ ├── jmui_chat_item_receive_image.xml │ │ ├── jmui_chat_item_receive_text.xml │ │ ├── jmui_chat_item_receive_voice.xml │ │ ├── jmui_chat_item_send_image.xml │ │ ├── jmui_chat_item_send_text.xml │ │ ├── jmui_chat_item_send_voice.xml │ │ ├── jmui_default_toast.xml │ │ ├── jmui_dialog_base.xml │ │ ├── jmui_dialog_base_with_button.xml │ │ ├── jmui_dialog_msg_alert.xml │ │ ├── jmui_dialog_record_voice.xml │ │ ├── jmui_drop_down_list_header.xml │ │ ├── jmui_loading_view.xml │ │ └── jmui_menu_title_bar.xml │ ├── menu │ │ └── menu_main.xml │ ├── values-v21 │ │ └── styles.xml │ ├── values-w820dp │ │ └── dimens.xml │ └── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── cn │ └── jmessage │ └── android │ └── uikit │ ├── AboutActivity.java │ ├── DemoActivity.java │ └── chatting │ ├── BaseActivity.java │ ├── BaseImageView.java │ ├── BubbleImageView.java │ ├── ChatActivity.java │ ├── ChatView.java │ ├── CircleImageView.java │ ├── DropDownListView.java │ ├── MsgListAdapter.java │ ├── RecordVoiceButton.java │ ├── ShaderImageView.java │ ├── photoview │ ├── Compat.java │ ├── IPhotoView.java │ ├── PhotoView.java │ ├── PhotoViewAttacher.java │ ├── SDK16.java │ ├── ScrollerProxy.java │ └── VersionedGestureDetector.java │ ├── shader │ ├── BubbleShader.java │ └── ShaderHelper.java │ └── utils │ ├── BitmapLoader.java │ ├── DialogCreator.java │ ├── Event.java │ ├── FileHelper.java │ ├── HandleResponseCode.java │ ├── IdHelper.java │ ├── SharePreferenceManager.java │ └── TimeFormat.java ├── GroupChatDetail ├── .gitignore ├── AndroidManifest.xml ├── README.md ├── build.gradle ├── libs │ ├── android-support-v4.jar │ ├── android-support-v7-appcompat.jar │ ├── arm64-v8a │ │ └── libjpush206.so │ ├── armeabi-v7a │ │ └── libjpush206.so │ ├── armeabi │ │ └── libjpush206.so │ ├── jmessage-android-debug-1.2.0b777.jar │ ├── mips │ │ └── libjpush206.so │ ├── mips64 │ │ └── libjpush206.so │ ├── x86 │ │ └── libjpush206.so │ └── x86_64 │ │ └── libjpush206.so ├── proguard-rules.pro ├── res │ ├── drawable-hdpi │ │ ├── ic_launcher.png │ │ ├── jmui_loading_1.png │ │ ├── jmui_loading_10.png │ │ ├── jmui_loading_11.png │ │ ├── jmui_loading_12.png │ │ ├── jmui_loading_13.png │ │ ├── jmui_loading_14.png │ │ ├── jmui_loading_2.png │ │ ├── jmui_loading_3.png │ │ ├── jmui_loading_4.png │ │ ├── jmui_loading_5.png │ │ ├── jmui_loading_6.png │ │ ├── jmui_loading_7.png │ │ ├── jmui_loading_8.png │ │ └── jmui_loading_9.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ ├── ic_launcher.png │ │ ├── jmui_arrow.png │ │ ├── jmui_back_btn.png │ │ ├── jmui_chat_detail.png │ │ ├── jmui_chat_detail_add.png │ │ ├── jmui_chat_detail_del.png │ │ ├── jmui_head_icon.png │ │ └── jmui_search.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── drawable-xxxhdpi │ │ └── ic_launcher.png │ ├── drawable │ │ ├── jmui_back_btn_bg.xml │ │ ├── jmui_chat_detail_btn_bg.xml │ │ ├── jmui_default_input_bg.xml │ │ ├── jmui_dialog_bottom_btn_bg.xml │ │ ├── jmui_dialog_bottom_left_btn.xml │ │ ├── jmui_dialog_bottom_right_btn.xml │ │ ├── jmui_dialog_default_bg.xml │ │ ├── jmui_edit_text_bg.9.png │ │ ├── jmui_list_item_bg.xml │ │ ├── jmui_loading.xml │ │ ├── jmui_send_picture_btn_bg.xml │ │ ├── jmui_text_cursor_bg.xml │ │ └── jmui_toast_default_bg.xml │ ├── layout │ │ ├── jmui_activity_all_members.xml │ │ ├── jmui_activity_group_detail.xml │ │ ├── jmui_activity_main.xml │ │ ├── jmui_all_member_item.xml │ │ ├── jmui_dialog_add_friend_to_conv_list.xml │ │ ├── jmui_dialog_base.xml │ │ ├── jmui_dialog_base_with_button.xml │ │ ├── jmui_dialog_reset_password.xml │ │ ├── jmui_group_grid_view_item.xml │ │ ├── jmui_loading_view.xml │ │ ├── jmui_menu_title_bar.xml │ │ └── jmui_toast_default_style.xml │ ├── values-w820dp │ │ └── dimens.xml │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── cn │ └── jmessage │ └── android │ └── uikit │ ├── DemoActivity.java │ └── groupchatdetail │ ├── AllMembersAdapter.java │ ├── BaseActivity.java │ ├── BaseImageView.java │ ├── BitmapLoader.java │ ├── ChatDetailView.java │ ├── CircleImageView.java │ ├── DialogCreator.java │ ├── GroupDetailActivity.java │ ├── GroupGridView.java │ ├── GroupMemberGridAdapter.java │ ├── HandleResponseCode.java │ ├── HanziToPinyin.java │ ├── IdHelper.java │ └── MembersInChatActivity.java ├── LICENSE ├── MultiSelectPhotos ├── .gitignore ├── README.md ├── build.gradle ├── libs │ ├── android-support-v4.jar │ ├── android-support-v7-appcompat.jar │ └── nineoldandroids-2.4.0.jar ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── cn │ │ └── jmessage │ │ └── android │ │ └── uikit │ │ ├── DemoActivity.java │ │ └── multiselectphotos │ │ ├── AlbumListActivity.java │ │ ├── AlbumListAdapter.java │ │ ├── AlbumListView.java │ │ ├── BaseActivity.java │ │ ├── BitmapLoader.java │ │ ├── BrowserView.java │ │ ├── BrowserViewPagerActivity.java │ │ ├── DialogCreator.java │ │ ├── ImageBean.java │ │ ├── ImgBrowserViewPager.java │ │ ├── MyImageView.java │ │ ├── NativeImageLoader.java │ │ ├── PickPictureActivity.java │ │ ├── PickPictureAdapter.java │ │ ├── PickPictureView.java │ │ ├── SortPictureList.java │ │ └── photoview │ │ ├── Compat.java │ │ ├── IPhotoView.java │ │ ├── PhotoView.java │ │ ├── PhotoViewAttacher.java │ │ ├── SDK16.java │ │ ├── ScrollerProxy.java │ │ └── VersionedGestureDetector.java │ └── res │ ├── drawable │ ├── jmui_back_btn_bg.xml │ ├── jmui_default_check_box_style.xml │ ├── jmui_download_image_btn_bg.xml │ ├── jmui_loading.xml │ ├── jmui_pictures_selected_bg.xml │ ├── jmui_round_check_box_bg.xml │ └── jmui_send_picture_btn_bg.xml │ ├── layout │ ├── jmui_activity_album_list.xml │ ├── jmui_activity_image_browser.xml │ ├── jmui_activity_main.xml │ ├── jmui_activity_pick_picture_detail.xml │ ├── jmui_album_list_item.xml │ ├── jmui_loading_view.xml │ └── jmui_pick_picture_detail_grid_item.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ ├── jmui_loading_1.png │ ├── jmui_loading_10.png │ ├── jmui_loading_11.png │ ├── jmui_loading_12.png │ ├── jmui_loading_13.png │ ├── jmui_loading_14.png │ ├── jmui_loading_2.png │ ├── jmui_loading_3.png │ ├── jmui_loading_4.png │ ├── jmui_loading_5.png │ ├── jmui_loading_6.png │ ├── jmui_loading_7.png │ ├── jmui_loading_8.png │ └── jmui_loading_9.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── jmui_arrow.png │ ├── jmui_back_btn.png │ ├── jmui_default_check_box_checked.png │ ├── jmui_picture_not_found.png │ ├── jmui_round_check_box_checked.png │ ├── jmui_round_check_box_normal.png │ ├── jmui_selected.png │ └── jmui_unselected.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── README.md ├── RecordVoice ├── .gitignore ├── README.md ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── cn │ │ └── jmessage │ │ └── android │ │ └── uikit │ │ ├── BaseImageView.java │ │ ├── CircleImageView.java │ │ ├── DemoActivity.java │ │ ├── ListAdapter.java │ │ ├── VoiceMessage.java │ │ └── recordvoice │ │ ├── IdHelper.java │ │ └── RecordVoiceButton.java │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ ├── ic_launcher.png │ ├── jmui_cancel_record.png │ ├── jmui_head_icon.png │ ├── jmui_mic_1.png │ ├── jmui_mic_2.png │ ├── jmui_mic_3.png │ ├── jmui_mic_4.png │ ├── jmui_mic_5.png │ ├── jmui_send_1.png │ ├── jmui_send_2.png │ ├── jmui_send_3.png │ └── jmui_send_msg.9.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── drawable-xxxhdpi │ └── ic_launcher.png │ ├── drawable │ ├── jmui_msg_send_bg.xml │ ├── jmui_round_background.xml │ ├── jmui_voice_bg.xml │ └── jmui_voice_send.xml │ ├── layout │ ├── jmui_activity_main.xml │ ├── jmui_chat_item_send_voice.xml │ └── jmui_dialog_record_voice.xml │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | 15 | # Gradle files 16 | .gradle/ 17 | build/ 18 | /*/build/ 19 | 20 | # Local configuration file (sdk path, etc) 21 | local.properties 22 | 23 | # Proguard folder generated by Eclipse 24 | proguard/ 25 | 26 | # Log Files 27 | *.log 28 | *.iml 29 | .gradle 30 | /local.properties 31 | /.idea/workspace.xml 32 | /.idea/libraries 33 | /.idea 34 | .DS_Store 35 | /build 36 | /captures 37 | -------------------------------------------------------------------------------- /Chatting/.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | 15 | # Gradle files 16 | .gradle/ 17 | build/ 18 | /*/build/ 19 | 20 | # Local configuration file (sdk path, etc) 21 | local.properties 22 | 23 | # Proguard folder generated by Eclipse 24 | proguard/ 25 | 26 | # Log Files 27 | *.log 28 | -------------------------------------------------------------------------------- /Chatting/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 极光推送 JPush 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /Chatting/libs/arm64-v8a/libjpush211.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/libs/arm64-v8a/libjpush211.so -------------------------------------------------------------------------------- /Chatting/libs/armeabi-v7a/libjpush211.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/libs/armeabi-v7a/libjpush211.so -------------------------------------------------------------------------------- /Chatting/libs/armeabi/libjpush211.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/libs/armeabi/libjpush211.so -------------------------------------------------------------------------------- /Chatting/libs/eventbus.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/libs/eventbus.jar -------------------------------------------------------------------------------- /Chatting/libs/jmessage-android-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/libs/jmessage-android-1.2.1.jar -------------------------------------------------------------------------------- /Chatting/libs/mips/libjpush211.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/libs/mips/libjpush211.so -------------------------------------------------------------------------------- /Chatting/libs/mips64/libjpush211.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/libs/mips64/libjpush211.so -------------------------------------------------------------------------------- /Chatting/libs/nineoldandroids-2.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/libs/nineoldandroids-2.4.0.jar -------------------------------------------------------------------------------- /Chatting/libs/picasso-2.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/libs/picasso-2.4.0.jar -------------------------------------------------------------------------------- /Chatting/libs/x86/libjpush211.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/libs/x86/libjpush211.so -------------------------------------------------------------------------------- /Chatting/libs/x86_64/libjpush211.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/libs/x86_64/libjpush211.so -------------------------------------------------------------------------------- /Chatting/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/huminios/Library/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /Chatting/res/anim/jmui_rotate.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 12 | 13 | -------------------------------------------------------------------------------- /Chatting/res/anim/jmui_slide_in_from_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /Chatting/res/anim/jmui_slide_in_from_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /Chatting/res/anim/jmui_slide_out_to_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /Chatting/res/anim/jmui_slide_out_to_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /Chatting/res/anim/jmui_voice_receive.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 10 | 13 | -------------------------------------------------------------------------------- /Chatting/res/anim/jmui_voice_send.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 10 | 13 | -------------------------------------------------------------------------------- /Chatting/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chatting/res/drawable-hdpi/jmui_loading_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-hdpi/jmui_loading_1.png -------------------------------------------------------------------------------- /Chatting/res/drawable-hdpi/jmui_loading_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-hdpi/jmui_loading_10.png -------------------------------------------------------------------------------- /Chatting/res/drawable-hdpi/jmui_loading_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-hdpi/jmui_loading_11.png -------------------------------------------------------------------------------- /Chatting/res/drawable-hdpi/jmui_loading_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-hdpi/jmui_loading_12.png -------------------------------------------------------------------------------- /Chatting/res/drawable-hdpi/jmui_loading_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-hdpi/jmui_loading_13.png -------------------------------------------------------------------------------- /Chatting/res/drawable-hdpi/jmui_loading_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-hdpi/jmui_loading_14.png -------------------------------------------------------------------------------- /Chatting/res/drawable-hdpi/jmui_loading_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-hdpi/jmui_loading_2.png -------------------------------------------------------------------------------- /Chatting/res/drawable-hdpi/jmui_loading_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-hdpi/jmui_loading_3.png -------------------------------------------------------------------------------- /Chatting/res/drawable-hdpi/jmui_loading_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-hdpi/jmui_loading_4.png -------------------------------------------------------------------------------- /Chatting/res/drawable-hdpi/jmui_loading_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-hdpi/jmui_loading_5.png -------------------------------------------------------------------------------- /Chatting/res/drawable-hdpi/jmui_loading_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-hdpi/jmui_loading_6.png -------------------------------------------------------------------------------- /Chatting/res/drawable-hdpi/jmui_loading_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-hdpi/jmui_loading_7.png -------------------------------------------------------------------------------- /Chatting/res/drawable-hdpi/jmui_loading_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-hdpi/jmui_loading_8.png -------------------------------------------------------------------------------- /Chatting/res/drawable-hdpi/jmui_loading_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-hdpi/jmui_loading_9.png -------------------------------------------------------------------------------- /Chatting/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_back_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_back_btn.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_business_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_business_card.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_cancel_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_cancel_record.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_chat_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_chat_detail.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_expression1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_expression1.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_fetch_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_fetch_failed.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_group.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_head_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_head_icon.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_keyboard.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_location.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_mic_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_mic_1.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_mic_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_mic_2.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_mic_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_mic_3.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_mic_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_mic_4.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_mic_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_mic_5.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_more_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_more_menu.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_pick_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_pick_picture.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_picture_not_found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_picture_not_found.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_receive_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_receive_1.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_receive_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_receive_2.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_receive_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_receive_3.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_receive_msg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_receive_msg.9.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_send_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_send_1.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_send_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_send_2.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_send_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_send_3.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_send_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_send_error.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_send_msg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_send_msg.9.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_sending_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_sending_img.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_take_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_take_photo.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_video.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_voice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_voice.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xhdpi/jmui_voice_unread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xhdpi/jmui_voice_unread.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chatting/res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpush/jmessage-android-uikit/0c9edbf357a9de46d48a84ea96c197419ae75735/Chatting/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chatting/res/drawable/jmui_back_btn_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chatting/res/drawable/jmui_chat_input_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Chatting/res/drawable/jmui_dialog_bottom_btn_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /Chatting/res/drawable/jmui_dialog_bottom_left_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Chatting/res/drawable/jmui_dialog_bottom_right_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Chatting/res/drawable/jmui_dialog_default_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /Chatting/res/drawable/jmui_dialog_top_btn_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Chatting/res/drawable/jmui_list_item_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Chatting/res/drawable/jmui_loading.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Chatting/res/drawable/jmui_msg_receive_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Chatting/res/drawable/jmui_msg_send_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Chatting/res/drawable/jmui_register_btn_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Chatting/res/drawable/jmui_round_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Chatting/res/drawable/jmui_send_picture_btn_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Chatting/res/drawable/jmui_text_cursor_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Chatting/res/drawable/jmui_toast_default_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Chatting/res/drawable/jmui_voice_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Chatting/res/layout/jmui_activity_about.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 15 | 16 | -------------------------------------------------------------------------------- /Chatting/res/layout/jmui_activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 20 | 21 | 26 | 27 | 34 | 35 | 36 | 37 | 41 | 42 | 43 | 52 | 53 | 58 | 59 | 66 | 67 | 68 | 69 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /Chatting/res/layout/jmui_chat_item_group_change.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 14 | 15 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /Chatting/res/layout/jmui_chat_item_receive_image.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | 10 | 14 | 15 | 18 | 19 | 25 | 26 | 35 | 36 | 37 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /Chatting/res/layout/jmui_chat_item_receive_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 9 | 10 | 11 | 15 | 16 | 19 | 20 | 27 | 28 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /Chatting/res/layout/jmui_chat_item_send_image.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | 10 | 14 | 15 | 18 | 19 | 28 | 29 | 37 | 38 | 46 | 47 | 48 | 56 | 57 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /Chatting/res/layout/jmui_chat_item_send_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 9 | 10 | 14 | 15 | 16 | 27 | 28 | 36 | 37 | 48 | 49 | -------------------------------------------------------------------------------- /Chatting/res/layout/jmui_default_toast.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 14 | 15 | -------------------------------------------------------------------------------- /Chatting/res/layout/jmui_dialog_base.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 19 | 20 | 21 | 30 | 34 | 35 | 36 |