├── .classpath ├── .gitignore ├── .project ├── .settings ├── org.eclipse.core.resources.prefs └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── README.md ├── assets └── crashlytics-build.properties ├── crashlytics.properties ├── gen └── com │ └── donal │ └── wechat │ ├── BuildConfig.java │ └── R.java ├── libs ├── SMSSDK_fat.jar ├── armeabi │ └── libbdpush_V1_0.so ├── asmack-android-8-0.8.10.jar ├── base.jar ├── basehttplibrary.jar ├── crashlytics.jar ├── libGoogleAnalyticsServices.jar ├── mips │ └── libbdpush_V1_0.so └── x86 │ └── libbdpush_V1_0.so ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res ├── anim │ ├── enter_in_from_right.xml │ ├── enter_out_to_left.xml │ ├── exit_in_from_left.xml │ ├── exit_out_to_right.xml │ ├── loading_page_loading.xml │ ├── loadmore_animation.xml │ ├── pophidden_anim.xml │ ├── popshow_anim.xml │ ├── receiver_voice_node_playing.xml │ ├── refresh_button_rotation.xml │ ├── sender_voice_node_playing.xml │ ├── slide_in_up.xml │ ├── slide_out_down.xml │ ├── translucent_zoom_exit.xml │ ├── translucent_zoom_in.xml │ └── translucent_zoom_out.xml ├── color │ └── tabbar_text.xml ├── drawable-hdpi │ ├── avatar_placeholder.png │ ├── btn_back_normal.png │ ├── btn_next_normal.png │ ├── chat_from_bg_normal.9.png │ ├── chat_from_bg_pressed.9.png │ ├── chat_to_bg_normal.9.png │ ├── chat_to_bg_pressed.9.png │ ├── chatfrom_voice_playing.png │ ├── chatfrom_voice_playing_f1.png │ ├── chatfrom_voice_playing_f2.png │ ├── chatfrom_voice_playing_f3.png │ ├── chatto_voice_playing_f1.png │ ├── chatto_voice_playing_f2.png │ ├── chatto_voice_playing_f3.png │ ├── clearwords_bg_nor.png │ ├── clearwords_bg_sel.png │ ├── clearwords_icon.png │ ├── content_image_loading.png │ ├── default_round_head.png │ ├── face.png │ ├── face_hl.png │ ├── ic_launcher.png │ ├── ic_pulltorefresh_arrow.png │ ├── input_bar_background.png │ ├── input_bar_flat.png │ ├── keyborad.png │ ├── keyborad_hl.png │ ├── loading_page_loading0.png │ ├── loading_page_loading1.png │ ├── loading_page_loading2.png │ ├── loading_page_loading3.png │ ├── multimedia.png │ ├── multimedia_hl.png │ ├── nav_refresh.png │ ├── new_data_toast.9.png │ ├── record_animate_01.png │ ├── record_animate_02.png │ ├── record_animate_03.png │ ├── record_animate_04.png │ ├── record_animate_05.png │ ├── record_animate_06.png │ ├── record_animate_07.png │ ├── record_animate_08.png │ ├── record_animate_09.png │ ├── record_animate_10.png │ ├── record_animate_11.png │ ├── record_animate_12.png │ ├── record_animate_13.png │ ├── record_animate_14.png │ ├── record_bg.png │ ├── refreshlistview_arrow.png │ ├── review_bg_blue.9.png │ ├── round_1.png │ ├── round_10.png │ ├── round_2.png │ ├── round_3.png │ ├── round_4.png │ ├── round_5.png │ ├── round_6.png │ ├── round_7.png │ ├── round_8.png │ ├── round_9.png │ ├── sc_message_box_bubble.png │ ├── shadow_bottom.png │ ├── shadow_left.png │ ├── shadow_right.png │ ├── smssdk_back_arrow.png │ ├── smssdk_back_arrow2.png │ ├── smssdk_cl_divider.png │ ├── smssdk_clear_search.png │ ├── smssdk_cp_default_avatar.png │ ├── smssdk_default_avatar.png │ ├── smssdk_dialog_back.9.png │ ├── smssdk_dialog_bg.9.png │ ├── smssdk_input_bg_focus.9.png │ ├── smssdk_input_bg_normal.9.png │ ├── smssdk_input_bg_special_focus.9.png │ ├── smssdk_input_bg_special_normal.9.png │ ├── smssdk_search_icon.png │ ├── smssdk_sharesdk_icon.png │ ├── tabbar_contacts.png │ ├── tabbar_contacts_highlighted.png │ ├── tabbar_discover.png │ ├── tabbar_discover_highlighted.png │ ├── tabbar_mainframe.png │ ├── tabbar_mainframe_highlighted.png │ ├── tabbar_me.png │ ├── tabbar_me_highlighted.png │ ├── voice.png │ ├── voice_hl.png │ ├── voice_to_short.png │ ├── voicebtn_black.png │ ├── voicebtn_blackhl.png │ ├── welcome.jpg │ └── xlistview_arrow.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable │ ├── bg_head.xml │ ├── bg_head_normal.xml │ ├── bg_head_pressed.xml │ ├── clearwords_bg.xml │ ├── incoming.xml │ ├── outgoing.xml │ ├── shadow.xml │ ├── smssdk_btn_disenable.xml │ ├── smssdk_btn_enable.xml │ ├── smssdk_corners_bg.xml │ ├── smssdk_corners_bg_nor.xml │ ├── smssdk_corners_bg_pre.xml │ ├── smssdk_country_bg_selector.xml │ ├── smssdk_country_group_scroll_down.xml │ ├── smssdk_country_group_scroll_up.xml │ ├── smssdk_dialog_btn_back.xml │ ├── smssdk_edittext_bg_selector.xml │ ├── tabbar_button1.xml │ ├── tabbar_button2.xml │ ├── tabbar_button3.xml │ ├── tabbar_button4.xml │ └── view_progress.xml ├── layout-large │ ├── bookmark_picker_list_item.xml │ ├── encode.xml │ ├── help.xml │ ├── history_list_item.xml │ ├── layout_refreshlistview_header.xml │ ├── pull_to_refresh_head.xml │ ├── refresh_footer.xml │ ├── refresh_header.xml │ ├── search_book_contents.xml │ ├── search_book_contents_header.xml │ ├── search_book_contents_list_item.xml │ ├── share.xml │ ├── toastmessage_text.xml │ ├── update_dialog.xml │ ├── xlistview_footer.xml │ └── xlistview_header.xml ├── layout │ ├── chat_cell.xml │ ├── chat_left_image.xml │ ├── chat_left_text.xml │ ├── chat_left_voice.xml │ ├── chat_right_image.xml │ ├── chat_right_text.xml │ ├── chat_right_voice.xml │ ├── chating.xml │ ├── des_cell.xml │ ├── findfriend.xml │ ├── friend.xml │ ├── friend_card_cell.xml │ ├── index.xml │ ├── left_slide_drawer.xml │ ├── login.xml │ ├── login_header.xml │ ├── lovecode_edit_edittext_dialog.xml │ ├── main.xml │ ├── me_footer.xml │ ├── more_headerview.xml │ ├── register1.xml │ ├── register2.xml │ ├── slide_draw_cell.xml │ ├── smssdk_back_verify_dialog.xml │ ├── smssdk_contact_detail_page.xml │ ├── smssdk_contact_list_page.xml │ ├── smssdk_contacts_listview_item.xml │ ├── smssdk_country_list_page.xml │ ├── smssdk_input_identify_num_page.xml │ ├── smssdk_listview_title_layout.xml │ ├── smssdk_progress_dialog.xml │ ├── smssdk_regist_page.xml │ ├── smssdk_search_title_layout.xml │ ├── smssdk_send_msg_dialog.xml │ ├── smssdk_title_layout.xml │ ├── swipeback_layout.xml │ ├── voice_dialog.xml │ ├── wechat.xml │ └── welcome_page.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── arrays.xml │ ├── attrs.xml │ ├── colors.xml │ ├── com_crashlytics_export_strings.xml │ ├── dimens.xml │ ├── ids.xml │ ├── smssdk_arrays.xml │ ├── smssdk_colors.xml │ ├── smssdk_errors.xml │ ├── smssdk_strings.xml │ ├── smssdk_styles.xml │ ├── strings.xml │ └── style.xml ├── src ├── bean │ ├── JsonMessage.java │ ├── KeyValue.java │ ├── StrangerEntity.java │ ├── Update.java │ ├── UserDetail.java │ ├── UserEntity.java │ └── UserInfo.java ├── config │ ├── ApiClent.java │ ├── AppActivity.java │ ├── AppActivitySupport.java │ ├── CommonValue.java │ ├── FriendManager.java │ ├── MessageManager.java │ ├── NoticeManager.java │ ├── QYRestClient.java │ ├── WCApplication.java │ └── XmppConnectionManager.java ├── db │ ├── DBManager.java │ ├── DataBaseHelper.java │ ├── SDCardSQLiteOpenHelper.java │ └── SQLiteTemplate.java ├── im │ ├── AChating.java │ ├── AWechatActivity.java │ ├── Chating.java │ ├── VoiceBubbleListener.java │ ├── WeChat.java │ └── model │ │ ├── HistoryChatBean.java │ │ ├── IMMessage.java │ │ └── Notice.java ├── qiniu │ ├── auth │ │ ├── CallRet.java │ │ ├── Client.java │ │ └── JSONObjectRet.java │ ├── conf │ │ └── Conf.java │ ├── io │ │ ├── IO.java │ │ └── PutExtra.java │ ├── resumableio │ │ ├── PutExtra.java │ │ ├── PutRet.java │ │ ├── ResumableClient.java │ │ └── ResumableIO.java │ └── utils │ │ ├── AuthException.java │ │ ├── Config.java │ │ ├── DigestAuth.java │ │ ├── EncodeUtils.java │ │ ├── ICancel.java │ │ ├── IOnProcess.java │ │ ├── InputStreamAt.java │ │ ├── Mac.java │ │ ├── MultipartEntity.java │ │ └── PutPolicy.java ├── service │ └── IMChatService.java ├── swipeback │ ├── SwipeBackActivity.java │ ├── SwipeBackActivityBase.java │ ├── SwipeBackActivityHelper.java │ ├── SwipeBackLayout.java │ └── ViewDragHelper.java ├── tools │ ├── AudioPlayManager.java │ ├── AudioRecoderManager.java │ └── UpdateManager.java └── ui │ ├── FindFriend.java │ ├── Friend.java │ ├── Login.java │ ├── MainActivity.java │ ├── Me.java │ ├── Register1.java │ ├── Register2.java │ ├── Tabbar.java │ ├── Welcome.java │ ├── adapter │ ├── FieldAdapter.java │ ├── FriendCardAdapter.java │ ├── LeftListViewAdapter.java │ ├── StrangerAdapter.java │ ├── TextAdapter.java │ └── WeChatAdapter.java │ └── view │ └── SlideDrawerView.java └── wechat.iml /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | src/im/Chating.java 3 | out 4 | .idea -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | wechat 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/ui/Tabbar.java=UTF-8 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | wechat xmpp 2 | ====== 3 | 服务器可以到http://donal-tong.github.io/blog/2014/06/05/wechatserver 4 | 5 | 体验软件地址 http://fir.im/l9m5 6 | 7 | 该项目不再维护 8 | 9 | 新版的项目可以到https://github.com/donal-tong/Tut-android 10 | -------------------------------------------------------------------------------- /assets/crashlytics-build.properties: -------------------------------------------------------------------------------- 1 | #This file is automatically generated by Crashlytics to uniquely 2 | #identify individual builds of your Android application. 3 | # 4 | #Do NOT modify, delete, or commit to source control! 5 | # 6 | #Fri Jun 13 16:31:57 CST 2014 7 | version_name=1.0 8 | package_name=com.donal.wechat 9 | build_id=8a053417-6ad0-4d8f-8f5a-a9cdc844d1b8 10 | version_code=1 11 | app_name=wechat 12 | -------------------------------------------------------------------------------- /crashlytics.properties: -------------------------------------------------------------------------------- 1 | #Contains API Secret used to validate your application. Commit to internal source control; avoid making secret public. 2 | #Fri Jun 13 13:36:29 CST 2014 3 | apiSecret=9e2d0e6965d4be07d7cfff808a9d80a2a380f3087c3ce294e382f9db2a68670a 4 | -------------------------------------------------------------------------------- /gen/com/donal/wechat/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.donal.wechat; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /libs/SMSSDK_fat.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/libs/SMSSDK_fat.jar -------------------------------------------------------------------------------- /libs/armeabi/libbdpush_V1_0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/libs/armeabi/libbdpush_V1_0.so -------------------------------------------------------------------------------- /libs/asmack-android-8-0.8.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/libs/asmack-android-8-0.8.10.jar -------------------------------------------------------------------------------- /libs/base.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/libs/base.jar -------------------------------------------------------------------------------- /libs/basehttplibrary.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/libs/basehttplibrary.jar -------------------------------------------------------------------------------- /libs/crashlytics.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/libs/crashlytics.jar -------------------------------------------------------------------------------- /libs/libGoogleAnalyticsServices.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/libs/libGoogleAnalyticsServices.jar -------------------------------------------------------------------------------- /libs/mips/libbdpush_V1_0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/libs/mips/libbdpush_V1_0.so -------------------------------------------------------------------------------- /libs/x86/libbdpush_V1_0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/libs/x86/libbdpush_V1_0.so -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-19 15 | -------------------------------------------------------------------------------- /res/anim/enter_in_from_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /res/anim/enter_out_to_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | -------------------------------------------------------------------------------- /res/anim/exit_in_from_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | -------------------------------------------------------------------------------- /res/anim/exit_out_to_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | -------------------------------------------------------------------------------- /res/anim/loading_page_loading.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/anim/loadmore_animation.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /res/anim/pophidden_anim.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /res/anim/popshow_anim.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /res/anim/receiver_voice_node_playing.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 9 | 10 | 13 | 14 | 17 | 18 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/anim/refresh_button_rotation.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/sender_voice_node_playing.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 8 | 9 | 12 | 13 | 16 | 17 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /res/anim/slide_in_up.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/slide_out_down.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/translucent_zoom_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 10 | -------------------------------------------------------------------------------- /res/anim/translucent_zoom_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 10 | -------------------------------------------------------------------------------- /res/anim/translucent_zoom_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 10 | -------------------------------------------------------------------------------- /res/color/tabbar_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable-hdpi/avatar_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/avatar_placeholder.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_back_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/btn_back_normal.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_next_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/btn_next_normal.png -------------------------------------------------------------------------------- /res/drawable-hdpi/chat_from_bg_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/chat_from_bg_normal.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/chat_from_bg_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/chat_from_bg_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/chat_to_bg_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/chat_to_bg_normal.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/chat_to_bg_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/chat_to_bg_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/chatfrom_voice_playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/chatfrom_voice_playing.png -------------------------------------------------------------------------------- /res/drawable-hdpi/chatfrom_voice_playing_f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/chatfrom_voice_playing_f1.png -------------------------------------------------------------------------------- /res/drawable-hdpi/chatfrom_voice_playing_f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/chatfrom_voice_playing_f2.png -------------------------------------------------------------------------------- /res/drawable-hdpi/chatfrom_voice_playing_f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/chatfrom_voice_playing_f3.png -------------------------------------------------------------------------------- /res/drawable-hdpi/chatto_voice_playing_f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/chatto_voice_playing_f1.png -------------------------------------------------------------------------------- /res/drawable-hdpi/chatto_voice_playing_f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/chatto_voice_playing_f2.png -------------------------------------------------------------------------------- /res/drawable-hdpi/chatto_voice_playing_f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/chatto_voice_playing_f3.png -------------------------------------------------------------------------------- /res/drawable-hdpi/clearwords_bg_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/clearwords_bg_nor.png -------------------------------------------------------------------------------- /res/drawable-hdpi/clearwords_bg_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/clearwords_bg_sel.png -------------------------------------------------------------------------------- /res/drawable-hdpi/clearwords_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/clearwords_icon.png -------------------------------------------------------------------------------- /res/drawable-hdpi/content_image_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/content_image_loading.png -------------------------------------------------------------------------------- /res/drawable-hdpi/default_round_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/default_round_head.png -------------------------------------------------------------------------------- /res/drawable-hdpi/face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/face.png -------------------------------------------------------------------------------- /res/drawable-hdpi/face_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/face_hl.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_pulltorefresh_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/ic_pulltorefresh_arrow.png -------------------------------------------------------------------------------- /res/drawable-hdpi/input_bar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/input_bar_background.png -------------------------------------------------------------------------------- /res/drawable-hdpi/input_bar_flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/input_bar_flat.png -------------------------------------------------------------------------------- /res/drawable-hdpi/keyborad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/keyborad.png -------------------------------------------------------------------------------- /res/drawable-hdpi/keyborad_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/keyborad_hl.png -------------------------------------------------------------------------------- /res/drawable-hdpi/loading_page_loading0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/loading_page_loading0.png -------------------------------------------------------------------------------- /res/drawable-hdpi/loading_page_loading1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/loading_page_loading1.png -------------------------------------------------------------------------------- /res/drawable-hdpi/loading_page_loading2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/loading_page_loading2.png -------------------------------------------------------------------------------- /res/drawable-hdpi/loading_page_loading3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/loading_page_loading3.png -------------------------------------------------------------------------------- /res/drawable-hdpi/multimedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/multimedia.png -------------------------------------------------------------------------------- /res/drawable-hdpi/multimedia_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/multimedia_hl.png -------------------------------------------------------------------------------- /res/drawable-hdpi/nav_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/nav_refresh.png -------------------------------------------------------------------------------- /res/drawable-hdpi/new_data_toast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/new_data_toast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/record_animate_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/record_animate_01.png -------------------------------------------------------------------------------- /res/drawable-hdpi/record_animate_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/record_animate_02.png -------------------------------------------------------------------------------- /res/drawable-hdpi/record_animate_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/record_animate_03.png -------------------------------------------------------------------------------- /res/drawable-hdpi/record_animate_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/record_animate_04.png -------------------------------------------------------------------------------- /res/drawable-hdpi/record_animate_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/record_animate_05.png -------------------------------------------------------------------------------- /res/drawable-hdpi/record_animate_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/record_animate_06.png -------------------------------------------------------------------------------- /res/drawable-hdpi/record_animate_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/record_animate_07.png -------------------------------------------------------------------------------- /res/drawable-hdpi/record_animate_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/record_animate_08.png -------------------------------------------------------------------------------- /res/drawable-hdpi/record_animate_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/record_animate_09.png -------------------------------------------------------------------------------- /res/drawable-hdpi/record_animate_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/record_animate_10.png -------------------------------------------------------------------------------- /res/drawable-hdpi/record_animate_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/record_animate_11.png -------------------------------------------------------------------------------- /res/drawable-hdpi/record_animate_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/record_animate_12.png -------------------------------------------------------------------------------- /res/drawable-hdpi/record_animate_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/record_animate_13.png -------------------------------------------------------------------------------- /res/drawable-hdpi/record_animate_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/record_animate_14.png -------------------------------------------------------------------------------- /res/drawable-hdpi/record_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/record_bg.png -------------------------------------------------------------------------------- /res/drawable-hdpi/refreshlistview_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/refreshlistview_arrow.png -------------------------------------------------------------------------------- /res/drawable-hdpi/review_bg_blue.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/review_bg_blue.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/round_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/round_1.png -------------------------------------------------------------------------------- /res/drawable-hdpi/round_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/round_10.png -------------------------------------------------------------------------------- /res/drawable-hdpi/round_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/round_2.png -------------------------------------------------------------------------------- /res/drawable-hdpi/round_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/round_3.png -------------------------------------------------------------------------------- /res/drawable-hdpi/round_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/round_4.png -------------------------------------------------------------------------------- /res/drawable-hdpi/round_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/round_5.png -------------------------------------------------------------------------------- /res/drawable-hdpi/round_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/round_6.png -------------------------------------------------------------------------------- /res/drawable-hdpi/round_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/round_7.png -------------------------------------------------------------------------------- /res/drawable-hdpi/round_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/round_8.png -------------------------------------------------------------------------------- /res/drawable-hdpi/round_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/round_9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/sc_message_box_bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/sc_message_box_bubble.png -------------------------------------------------------------------------------- /res/drawable-hdpi/shadow_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/shadow_bottom.png -------------------------------------------------------------------------------- /res/drawable-hdpi/shadow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/shadow_left.png -------------------------------------------------------------------------------- /res/drawable-hdpi/shadow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/shadow_right.png -------------------------------------------------------------------------------- /res/drawable-hdpi/smssdk_back_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/smssdk_back_arrow.png -------------------------------------------------------------------------------- /res/drawable-hdpi/smssdk_back_arrow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/smssdk_back_arrow2.png -------------------------------------------------------------------------------- /res/drawable-hdpi/smssdk_cl_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/smssdk_cl_divider.png -------------------------------------------------------------------------------- /res/drawable-hdpi/smssdk_clear_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/smssdk_clear_search.png -------------------------------------------------------------------------------- /res/drawable-hdpi/smssdk_cp_default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/smssdk_cp_default_avatar.png -------------------------------------------------------------------------------- /res/drawable-hdpi/smssdk_default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/smssdk_default_avatar.png -------------------------------------------------------------------------------- /res/drawable-hdpi/smssdk_dialog_back.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/smssdk_dialog_back.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/smssdk_dialog_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/smssdk_dialog_bg.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/smssdk_input_bg_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/smssdk_input_bg_focus.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/smssdk_input_bg_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/smssdk_input_bg_normal.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/smssdk_input_bg_special_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/smssdk_input_bg_special_focus.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/smssdk_input_bg_special_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/smssdk_input_bg_special_normal.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/smssdk_search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/smssdk_search_icon.png -------------------------------------------------------------------------------- /res/drawable-hdpi/smssdk_sharesdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/smssdk_sharesdk_icon.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tabbar_contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/tabbar_contacts.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tabbar_contacts_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/tabbar_contacts_highlighted.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tabbar_discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/tabbar_discover.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tabbar_discover_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/tabbar_discover_highlighted.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tabbar_mainframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/tabbar_mainframe.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tabbar_mainframe_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/tabbar_mainframe_highlighted.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tabbar_me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/tabbar_me.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tabbar_me_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/tabbar_me_highlighted.png -------------------------------------------------------------------------------- /res/drawable-hdpi/voice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/voice.png -------------------------------------------------------------------------------- /res/drawable-hdpi/voice_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/voice_hl.png -------------------------------------------------------------------------------- /res/drawable-hdpi/voice_to_short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/voice_to_short.png -------------------------------------------------------------------------------- /res/drawable-hdpi/voicebtn_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/voicebtn_black.png -------------------------------------------------------------------------------- /res/drawable-hdpi/voicebtn_blackhl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/voicebtn_blackhl.png -------------------------------------------------------------------------------- /res/drawable-hdpi/welcome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/welcome.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/xlistview_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-hdpi/xlistview_arrow.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLTech21/wechat/401bb6cc6f064038539ae8de3eedd05cee8c93c1/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable/bg_head.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable/bg_head_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable/bg_head_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable/clearwords_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable/incoming.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/outgoing.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/shadow.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /res/drawable/smssdk_btn_disenable.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /res/drawable/smssdk_btn_enable.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /res/drawable/smssdk_corners_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /res/drawable/smssdk_corners_bg_nor.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 11 | 12 | 15 | 16 | -------------------------------------------------------------------------------- /res/drawable/smssdk_corners_bg_pre.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 11 | 12 | 15 | 16 | -------------------------------------------------------------------------------- /res/drawable/smssdk_country_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/drawable/smssdk_country_group_scroll_down.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /res/drawable/smssdk_country_group_scroll_up.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /res/drawable/smssdk_dialog_btn_back.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /res/drawable/smssdk_edittext_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /res/drawable/tabbar_button1.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable/tabbar_button2.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable/tabbar_button3.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable/tabbar_button4.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable/view_progress.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | -------------------------------------------------------------------------------- /res/layout-large/bookmark_picker_list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 23 | 24 | 28 | 29 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /res/layout-large/encode.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 25 | 26 | 31 | 32 | 36 | 37 | 46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /res/layout-large/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 21 | 22 | 26 | 27 | 35 | 36 |