Android: Imitate WeChat source code

Android: Imitate WeChat source code

Source code introduction: Test account: 123456888 Password: 123456888 For individual developers or small businesses, it is a trend to use third-party IM. After all, it is almost impractical to have an entire IM system for operational use (technical threshold and maintenance cost). So I summarized my previous experience and gains and made this APP that completely imitates WeChat. In general, the big architecture here still uses the UIdemo officially provided by Huanxin, but many of the details and most of the pages are carefully written by me according to the logic and UI design of WeChat. In terms of functions, it currently solves social functions such as friend system, user information, single chat, group chat, etc., and will continue to update functions such as changing chat background, searching local users, circle of friends, and more chat emoticons in the future. . . 1. Registration and login part: 1.1 Rewrite the default blue bottom line of EditText to WeChat green 1.2 Login and registration buttons monitor the input box and change color 1.3 Password plain text and hidden 2. Home page 2.1 Fully imitate the WeChat bottom navigation 2.2 The plus button in the upper right corner can enter "Initiate Group Chat" and "Add Friends" 2.3 Display the number of unread messages and unread notifications 3. Chat list page: 3.1 Group chat avatar is a combination of group members' avatars, there are 1.2.3.4.5 types of avatars 3.2 Top function. After pinning, the conversation item is placed at the top of the list and changes its background color like WeChat. 3.3 Delete list function to delete the conversation record. 4. Address book page 4.1 Display friend list 4.2 Enter and apply for notification 4.3 Enter group chat list 5. Discovery page (friend circle function is being developed...) 6. User details page 6.1 Profile settings (currently the information that can be changed is: avatar, nickname, gender) 6.2 WeChat account can only be set once. 6.3 Settings page (notification, sound, vibration, logout) 7. User application notification7.1 Sort by time from recent to far7.2 Display the reason for application7.3 Processing status (added, agreed) 8. Find and add users8.1 Find users by user's mobile phone number8.2 Display user information if the searched user exists8.3 If the user is already a friend, display the "Send Message" button8.4 If the user is not a friend, display Add Friend and ask to enter the reason for application9. Initiate a group chat9.1 You can search for friends by user nickname in the input box9.2 The avatar of the user added to the group chat can be dynamically displayed at the top10. The chat page can send voice, text, pictures and videos (more emoticons and chat background settings will be updated later) 11 Chat settings11.1 Single chat: pin chat, do not disturb, and clear chat history11.2 Group chat: display group member list, add group members, delete group members (group owner can operate), modify group name, pin chat, block and clear group messages

Source code effect:

Source code snippet:

  1. package com.fanxin.app.fx;
  2.   
  3. import java.util.ArrayList;
  4. import java.util.HashMap;
  5. import java.util.List;
  6. import java.util.Map;
  7. import java.util.UUID;
  8.   
  9. import com.alibaba.fastjson.JSONArray;
  10. import com.alibaba.fastjson.JSONException;
  11. import com.alibaba.fastjson.JSONObject;
  12. import com.easemob.EMConnectionListener;
  13. import com.easemob.EMError;
  14. import com.easemob.chat.EMChat;
  15. import com.easemob.chat.EMChatManager;
  16. import com.easemob.chat.EMContactListener;
  17. import com.easemob.chat.EMContactManager;
  18. import com.easemob.chat.EMConversation;
  19. import com.easemob.chat.EMGroupManager;
  20. import com.easemob.chat.EMMessage;
  21. import com.easemob.chat.EMNotifier;
  22. import com.easemob.chat.GroupChangeListener;
  23. import com.easemob.chat.TextMessageBody;
  24. import com.easemob.chat.EMMessage.ChatType;
  25. import com.easemob.chat.EMMessage.Type;
  26. import com.fanxin.app.Constant;
  27. import com.fanxin.app.DemoApplication;
  28. import com.fanxin.app.R;
  29. import com.fanxin.app.activity.BaseActivity;
  30. import com.fanxin.app.db.InviteMessgeDao;
  31. import com.fanxin.app.db.UserDao;
  32. import com.fanxin.app.domain.InviteMessage;
  33. import com.fanxin.app.domain.InviteMessage.InviteMesageStatus;
  34. import com.fanxin.app.domain.User;
  35. import com.fanxin.app.fx.others.LoadDataFromServer;
  36. import com.fanxin.app.fx.others.LoadDataFromServer.DataCallBack;
  37. import com.zdp.aseo.content.AseoZdpAseo;
  38. import com.easemob.exceptions.EaseMobException;
  39. import com.easemob.util.EMLog;
  40. import com.easemob.util.HanziToPinyin;
  41. import com.easemob.util.NetUtils;
  42.   
  43. import android.annotation.SuppressLint;
  44. import android.content.BroadcastReceiver;
  45. import android.content.Context;
  46. import android.content.DialogInterface;
  47. import android.content.Intent;
  48. import android.content.IntentFilter;
  49. import android.os.Bundle;
  50. import android.support.v4.app.Fragment;
  51. import android.support.v4.app.FragmentTransaction;
  52. import android.text.TextUtils;
  53. import android.util.Log;
  54. import android.view.KeyEvent;
  55. import android.view.View;
  56. import android.view.View.OnClickListener;
  57. import android.widget.ImageView;
  58. import android.widget.TextView;
  59. import android.widget.Toast;
  60.   
  61. @SuppressLint ( "DefaultLocale" )
  62. public   class MainActivity extends BaseActivity {
  63. //Unread message textview  
  64. private TextView unreadLabel;
  65. // Unread contacts textview  
  66. TextView unreadAddressLable;
  67. protected   static   final String TAG = "MainActivity" ;
  68.   
  69. private Fragment[] fragments;
  70. public FragmentCoversation homefragment;
  71. private FragmentFriends contactlistfragment;
  72. private FragmentFind findfragment;
  73. private FragmentProfile profilefragment;
  74. private ImageView[] imagebuttons;
  75. private TextView[] textviews;
  76. private   int index;
  77. // The index of the current fragment  
  78. private   int currentTabIndex;
  79. private NewMessageBroadcastReceiver msgReceiver;
  80. private android.app.AlertDialog.Builder conflictBuilder;
  81. private android.app.AlertDialog.Builder accountRemovedBuilder;
  82. private   boolean isConflictDialogShow;
  83. private   boolean isAccountRemovedDialogShow;
  84. // The account is logged in elsewhere  
  85. public   boolean isConflict = false ;
  86. // The account was removed  
  87. private   boolean isCurrentAccountRemoved = false ;
  88.   
  89. private InviteMessgeDao inviteMessgeDao;
  90. private UserDao userDao;
  91.   
  92. private ImageView iv_add;
  93. private ImageView iv_search;
  94.   
  95. /**
  96. * Check if the current user has been deleted
  97. */  
  98. public   boolean getCurrentAccountRemoved() {
  99. return isCurrentAccountRemoved;
  100. }
  101.   
  102. @Override  
  103. protected   void onCreate(Bundle savedInstanceState) {
  104. super .onCreate(savedInstanceState);
  105. if (savedInstanceState != null  
  106. && savedInstanceState.getBoolean(Constant.ACCOUNT_REMOVED,
  107. false )) {
  108. // Prevent the app from crashing after being removed if the user does not click the OK button and then presses the home button, and then re-enters the app in the background for a long time  
  109. // The same applies to the judgments added to the three fragments  
  110. DemoApplication.getInstance().logout( null );
  111. finish();
  112. startActivity( new Intent( this , LoginActivity. class ));
  113. return ;
  114. } else   if (savedInstanceState != null  
  115. && savedInstanceState.getBoolean( "isConflict" , false )) {
  116. // Prevent the app from crashing after being kicked out without clicking the OK button and then pressing the home button, and then entering the app again in the background for a long time  
  117. // The same applies to the judgments added to the three fragments  
  118. finish();
  119. startActivity( new Intent( this , LoginActivity. class ));
  120. return ;
  121. }
  122. setContentView(R.layout.activity_mian_temp);
  123. initView();
  124.   
  125. if (getIntent().getBooleanExtra( "conflict" , false )
  126. && !isConflictDialogShow) {
  127. showConflictDialog();
  128. } else   if (getIntent().getBooleanExtra(Constant.ACCOUNT_REMOVED, false )
  129. && !isAccountRemovedDialogShow) {
  130. showAccountRemovedDialog();
  131. }
  132. AseoZdpAseo.init( this , AseoZdpAseo.SCREEN_TYPE);
  133. iv_add = (ImageView) this .findViewById(R.id.iv_add);
  134. iv_search = (ImageView) this .findViewById(R.id.iv_search);
  135. iv_add.setOnClickListener( new OnClickListener() {
  136.   
  137. @Override  
  138. public   void onClick(View v) {
  139. AddPopWindow addPopWindow = new AddPopWindow(MainActivity. this );
  140. addPopWindow.showPopupWindow(iv_add);
  141. }
  142.   
  143. });
  144. iv_search.setOnClickListener( new OnClickListener() {
  145.   
  146. @Override  
  147. public   void onClick(View v) {
  148.   
  149. }
  150.   
  151. });
  152.   
  153. TextView tv_online = (TextView) this .findViewById(R.id.tv_online);
  154. tv_online.setOnClickListener( new OnClickListener() {
  155.   
  156. @Override  
  157. public   void onClick(View v) {
  158. startActivity( new Intent(MainActivity. this ,
  159. LasterLoginUserActivity. class ));
  160. }
  161.   
  162. });
  163.   
  164. }
  165.   
  166. private   void initView() {
  167. unreadLabel = (TextView) findViewById(R.id.unread_msg_number);
  168. unreadAddressLable = (TextView) findViewById(R.id.unread_address_number);
  169.   
  170. homefragment = new FragmentCoversation();
  171. contactlistfragment = new FragmentFriends();
  172. findfragment = new FragmentFind();
  173. profilefragment = new FragmentProfile();
  174. fragments = new Fragment[] { homefragment, contactlistfragment,
  175. findfragment, profilefragment };
  176. imagebuttons = new ImageView[ 4 ];
  177. imagebuttons[ 0 ] = (ImageView) findViewById(R.id.ib_weixin);
  178. imagebuttons[ 1 ] = (ImageView) findViewById(R.id.ib_contact_list);
  179. imagebuttons[ 2 ] = (ImageView) findViewById(R.id.ib_find);
  180. imagebuttons[ 3 ] = (ImageView) findViewById(R.id.ib_profile);
  181. AseoZdpAseo.initBan( this , findViewById(R.id.aseo_brand));
  182. imagebuttons[ 0 ].setSelected( true );
  183. textviews = new TextView[ 4 ];
  184. textviews[ 0 ] = (TextView) findViewById(R.id.tv_weixin);
  185. textviews[ 1 ] = (TextView) findViewById(R.id.tv_contact_list);
  186. textviews[ 2 ] = (TextView) findViewById(R.id.tv_find);
  187. textviews[ 3 ] = (TextView) findViewById(R.id.tv_profile);
  188. textviews[ 0 ].setTextColor( 0xFF45C01A );
  189. // Add and display the first fragment  
  190. getSupportFragmentManager().beginTransaction()
  191. .add(R.id.fragment_container, homefragment)
  192. .add(R.id.fragment_container, contactlistfragment)
  193. .add(R.id.fragment_container, profilefragment)
  194. .add(R.id.fragment_container, findfragment)
  195. .hide(contactlistfragment).hide(profilefragment)
  196. .hide(findfragment).show(homefragment).commit();
  197. inviteMessgeDao = new InviteMessgeDao( this );
  198. userDao = new UserDao( this );
  199.   
  200. // Register a BroadcastReceiver to receive messages  
  201. msgReceiver = new NewMessageBroadcastReceiver();
  202. IntentFilter intentFilter = new IntentFilter(EMChatManager
  203. .getInstance().getNewMessageBroadcastAction());
  204. intentFilter.setPriority( 3 );
  205. registerReceiver(msgReceiver, intentFilter);
  206.   
  207. // Register a BroadcastReceiver for the ack receipt message  
  208. IntentFilter ackMessageIntentFilter = new IntentFilter(EMChatManager
  209. .getInstance().getAckMessageBroadcastAction());
  210. ackMessageIntentFilter.setPriority( 3 );
  211. registerReceiver(ackMessageReceiver, ackMessageIntentFilter);
  212.   
  213. // Register a BroadcastReceiver for transparent message transmission  
  214. IntentFilter cmdMessageIntentFilter = new IntentFilter(EMChatManager
  215. .getInstance().getCmdMessageBroadcastAction());
  216. cmdMessageIntentFilter.setPriority( 3 );
  217. registerReceiver(cmdMessageReceiver, cmdMessageIntentFilter);
  218.   
  219. //Register a BroadcastReceiver for offline messages  
  220. // IntentFilter offlineMessageIntentFilter = new  
  221. // IntentFilter(EMChatManager.getInstance()  
  222. // .getOfflineMessageBroadcastAction());  
  223. // registerReceiver(offlineMessageReceiver, offlineMessageIntentFilter);  
  224.   
  225. // setContactListener to monitor changes in contacts, etc.  
  226. EMContactManager.getInstance().setContactListener(
  227. new MyContactListener());
  228. // Register a listener to monitor the connection status  
  229. EMChatManager.getInstance().addConnectionListener(
  230. new MyConnectionListener());
  231. // Register group chat related listeners  
  232. EMGroupManager.getInstance().addGroupChangeListener(
  233. new MyGroupChangeListener());
  234. // Notify the SDK that the UI has been initialized, the corresponding receiver and listener have been registered, and the broadcast can be accepted  
  235. EMChat.getInstance().setAppInited();
  236.   
  237. }
  238.   
  239. public   void onTabClicked(View view) {
  240. switch (view.getId()) {
  241. case R.id.re_weixin:
  242. index = 0 ;
  243. break ;
  244. case R.id.re_contact_list:
  245. index = 1 ;
  246. break ;
  247. case R.id.re_find:
  248. index = 2 ;
  249. break ;
  250. case R.id.re_profile:
  251. index = 3 ;
  252. break ;
  253.   
  254. }
  255.   
  256. if (currentTabIndex != index) {
  257. FragmentTransaction trx = getSupportFragmentManager()
  258. .beginTransaction();
  259. trx.hide(fragments[currentTabIndex]);
  260. if (!fragments[index].isAdded()) {
  261. trx.add(R.id.fragment_container, fragments[index]);
  262. }
  263. trx.show(fragments[index]).commit();
  264. }
  265. imagebuttons[currentTabIndex].setSelected( false );
  266. // Set the current tab to selected state  
  267. imagebuttons[index].setSelected( true );
  268. textviews[currentTabIndex].setTextColor( 0xFF999999 );
  269. textviews[index].setTextColor( 0xFF45C01A );
  270. currentTabIndex = index;
  271. }
  272.   
  273. /**
  274. * Display the account login dialog
  275. */  
  276. private   void showConflictDialog() {
  277. isConflictDialogShow = true ;
  278. DemoApplication.getInstance().logout( null );
  279. String st = getResources().getString(R.string.Logoff_notification);
  280. if (!MainActivity. this .isFinishing()) {
  281. // clear up global variables  
  282. try {
  283. if (conflictBuilder == null )
  284. conflictBuilder = new android.app.AlertDialog.Builder(
  285. MainActivity.this );
  286. conflictBuilder.setTitle(st);
  287. conflictBuilder.setMessage(R.string.connect_conflict);
  288. conflictBuilder.setPositiveButton(R.string.ok,
  289. new DialogInterface.OnClickListener() {
  290.   
  291. @Override  
  292. public   void onClick(DialogInterface dialog,
  293. int which) {
  294. dialog.dismiss();
  295. conflictBuilder = null ;
  296. finish();
  297. startActivity( new Intent(MainActivity. this ,
  298. LoginActivity. class ));
  299. }
  300. });
  301. conflictBuilder.setCancelable( false );
  302. conflictBuilder.create().show();
  303. isConflict = true ;
  304. } catch (Exception e) {
  305. EMLog.e(TAG,
  306. "---------color conflictBuilder error" + e.getMessage());
  307. }
  308.   
  309. }
  310.   
  311. }
  312.   
  313. /**
  314. * Account removed dialog
  315. */  
  316. private   void showAccountRemovedDialog() {
  317. isAccountRemovedDialogShow = true ;
  318. DemoApplication.getInstance().logout( null );
  319. String st5 = getResources().getString(R.string.Remove_the_notification);
  320. if (!MainActivity. this .isFinishing()) {
  321. // clear up global variables  
  322. try {
  323. if (accountRemovedBuilder == null )
  324. accountRemovedBuilder = new android.app.AlertDialog.Builder(
  325. MainActivity.this );
  326. accountRemovedBuilder.setTitle(st5);
  327. accountRemovedBuilder.setMessage(R.string.em_user_remove);
  328. accountRemovedBuilder.setPositiveButton(R.string.ok,
  329. new DialogInterface.OnClickListener() {
  330.   
  331. @Override  
  332. public   void onClick(DialogInterface dialog,
  333. int which) {
  334. dialog.dismiss();
  335. accountRemovedBuilder = null ;
  336. finish();
  337. startActivity( new Intent(MainActivity. this ,
  338. LoginActivity. class ));
  339. }
  340. });
  341. accountRemovedBuilder.setCancelable( false );
  342. accountRemovedBuilder.create().show();
  343. isCurrentAccountRemoved = true ;
  344. } catch (Exception e) {
  345. EMLog.e(TAG,
  346. "---------color userRemovedBuilder error"  
  347. + e.getMessage());
  348. }
  349.   
  350. }
  351.   
  352. }
  353.   
  354. /**
  355. * New message broadcast receiver
  356. *
  357. *
  358. */  
  359. private   class NewMessageBroadcastReceiver extends BroadcastReceiver {
  360. @Override  
  361. public   void onReceive(Context context, Intent intent) {
  362. // After the main page receives a message, it is mainly used to indicate that it is unread. The actual message content needs to be viewed on the chat page  
  363.   
  364. String from = intent.getStringExtra( "from" );
  365. // message id  
  366. String msgId = intent.getStringExtra( "msgid" );
  367. EMMessage message = EMChatManager.getInstance().getMessage(msgId);
  368. // 2014-10-22 Fixed the bug that on some machines, the content of the message sent by the other party on the chat page is not displayed immediately  
  369. if (ChatActivity.activityInstance != null ) {
  370. if (message.getChatType() == ChatType.GroupChat) {
  371. if (message.getTo().equals(
  372. ChatActivity.activityInstance.getToChatUsername()))
  373. return ;
  374. } else {
  375. if (from.equals(ChatActivity.activityInstance
  376. .getToChatUsername()))
  377. return ;
  378. }
  379. }
  380.   
  381. // Unregister the broadcast receiver, otherwise the broadcast will be received in ChatActivity  
  382. abortBroadcast();
  383.   
  384. notifyNewMessage(message);
  385.   
  386. // Refresh bottom bar message unread  
  387. updateUnreadLabel();
  388. if (currentTabIndex == 0 ) {
  389. // If the current page is the chat history page, refresh this page  
  390. if (homefragment != null ) {
  391. homefragment.refresh();
  392. }
  393. }
  394.   
  395. }
  396. }
  397.   
  398. /**
  399. * Message receipt BroadcastReceiver
  400. */  
  401. private BroadcastReceiver ackMessageReceiver = new BroadcastReceiver() {
  402.   
  403. @Override  
  404. public   void onReceive(Context context, Intent intent) {
  405. abortBroadcast();
  406.   
  407. String msgid = intent.getStringExtra( "msgid" );
  408. String from = intent.getStringExtra( "from" );
  409.   
  410. EMConversation conversation = EMChatManager.getInstance()
  411. .getConversation(from);
  412. if (conversation != null ) {
  413. // Set the message to be read  
  414. EMMessage msg = conversation.getMessage(msgid);
  415.   
  416. if (msg != null ) {
  417.   
  418. // 2014-11-5 Fixed the bug that on some machines, when the other party sends a read receipt on the chat page, it does not immediately show that the message has been read  
  419. if (ChatActivity.activityInstance != null ) {
  420. if (msg.getChatType() == ChatType.Chat) {
  421. if (from.equals(ChatActivity.activityInstance
  422. .getToChatUsername()))
  423. return ;
  424. }
  425. }
  426.   
  427. msg.isAcked = true ;
  428. }
  429. }
  430.   
  431. }
  432. };
  433.   
  434. /**
  435. * BroadcastReceiver
  436. */  
  437. private BroadcastReceiver cmdMessageReceiver = new BroadcastReceiver() {
  438.   
  439. @Override  
  440. public   void onReceive(Context context, Intent intent) {
  441. abortBroadcast();
  442. // EMLog.d(TAG, "Received transparent message");  
  443. // // Get cmd message object  
  444. //  
  445. // EMMessage message = intent.getParcelableExtra("message");  
  446. // // Get the message body  
  447. // CmdMessageBody cmdMsgBody = (CmdMessageBody) message.getBody();  
  448. // String action = cmdMsgBody.action; // Get custom action  
  449. //  
  450. // // Get extended attributes. Omitted here.  
  451. // // message.getStringAttribute("");  
  452. //EMLog.d(TAG,  
  453. // String.format("transmitted message: action:%s,message:%s", action,  
  454. // message.toString()));  
  455. // String st9 = getResources().getString(  
  456. // R.string.receive_the_passthrough);  
  457. // Toast.makeText(MainActivity.this, st9 + action,  
  458. // Toast.LENGTH_SHORT)  
  459. // .show();  
  460. }
  461. };
  462.   
  463. /**
  464. * Offline message BroadcastReceiver sdk After logging in, the server will push offline messages to the client. This receiver is the notification UI
  465. * Who sent offline messages? The UI can perform corresponding operations, such as downloading user information
  466. */  
  467. // private BroadcastReceiver offlineMessageReceiver = new  
  468. // BroadcastReceiver() {  
  469. //  
  470. // @Override  
  471. // public void onReceive(Context context, Intent intent) {  
  472. // String[] users = intent.getStringArrayExtra("fromuser");  
  473. // String[] groups = intent.getStringArrayExtra("fromgroup");  
  474. // if (users != null) {  
  475. // for (String user : users) {  
  476. // System.out.println("Received user offline message: " + user);  
  477. // }  
  478. // }  
  479. // if (groups != null) {  
  480. // for (String group : groups) {  
  481. // System.out.println("Received group offline message: " + group);  
  482. // }  
  483. // }  
  484. // }  
  485. // };  
  486.   
  487. /***
  488. * Friend change listener
  489. *
  490. */  
  491. private   class MyContactListener implements EMContactListener {
  492.   
  493. @Override  
  494. public   void onContactAdded(List<string> usernameList) {
  495.   
  496. refreshFriendsList();
  497. // Refresh the UI  
  498. if (currentTabIndex == 1 )
  499. contactlistfragment.refresh();
  500.   
  501. }
  502.   
  503. @Override  
  504. public   void onContactDeleted( final List<string> usernameList) {
  505. // deleted  
  506. Map<string, user= "" > localUsers = DemoApplication.getInstance()
  507. .getContactList();
  508. for (String username : usernameList) {
  509. localUsers.remove(username);
  510. userDao.deleteContact(username);
  511. inviteMessgeDao.deleteMessage(username);
  512. }
  513. runOnUiThread( new Runnable() {
  514. public   void run() {
  515. // If you are chatting with this user  
  516. String st10 = getResources().getString(
  517. R.string.have_you_removed);
  518. if (ChatActivity.activityInstance != null  
  519. && usernameList
  520. .contains(ChatActivity.activityInstance
  521. .getToChatUsername())) {
  522. Toast.makeText(
  523. MainActivity.this ,
  524. ChatActivity.activityInstance
  525. .getToChatUsername() + st10,
  526. Toast.LENGTH_SHORT).show();
  527. ChatActivity.activityInstance.finish();
  528. }
  529. updateUnreadLabel();
  530. // Refresh the UI  
  531. if (currentTabIndex == 1 )
  532. contactlistfragment.refresh();
  533. else   if (currentTabIndex == 0 )
  534. homefragment.refresh();
  535. }
  536. });
  537.   
  538. }
  539.   
  540. @Override  
  541. public   void onContactInvited(String username, String reason) {
  542. // If you do not process the invitation (accept or reject) after receiving it, the server will automatically send it again after the connection is disconnected, so the client does not need to remind it again  
  543. List<invitemessage> msgs = inviteMessgeDao.getMessagesList();
  544.   
  545. for (InviteMessage inviteMessage : msgs) {
  546. if (inviteMessage.getGroupId() == null  
  547. && inviteMessage.getFrom().equals(username)) {
  548. inviteMessgeDao.deleteMessage(username);
  549. }
  550. }
  551. // Javabean encapsulated by yourself  
  552. InviteMessage msg = new InviteMessage();
  553. msg.setFrom(username);
  554. msg.setTime(System.currentTimeMillis());
  555. msg.setReason(reason);
  556. Log.d(TAG, username + "Request to add you as a friend, reason: " + reason);
  557. // Set the corresponding status  
  558. msg.setStatus(InviteMesageStatus.BEINVITEED);
  559. notifyNewIviteMessage(msg);
  560.   
  561. }
  562.   
  563. @Override  
  564. public   void onContactAgreed( final String username) {
  565.   
  566. List<invitemessage> msgs = inviteMessgeDao.getMessagesList();
  567. for (InviteMessage inviteMessage : msgs) {
  568. if (inviteMessage.getFrom().equals(username)) {
  569. return ;
  570. }
  571. }
  572. runOnUiThread( new Runnable() {
  573. public   void run() {
  574.   
  575. addFriendToList(username);
  576. }
  577. });
  578.   
  579. }
  580.   
  581. @Override  
  582. public   void onContactRefused(String username) {
  583. // Reference agreed, invited to implement this function, demo not implemented  
  584. Log.d(username, username + "rejected your friend request" );
  585. }
  586.   
  587. }
  588.   
  589. /**
  590. * Save prompt new message
  591. *
  592. * @param msg
  593. */  
  594. private   void notifyNewIviteMessage(InviteMessage msg) {
  595. saveInviteMsg(msg);
  596. // Prompt that there is a new message  
  597. EMNotifier.getInstance(getApplicationContext()).notifyOnNewMsg();
  598.   
  599. // Refresh bottom bar message unread  
  600. updateUnreadAddressLable();
  601. // Refresh the friend page ui  
  602. if (currentTabIndex == 1 )
  603. contactlistfragment.refresh();
  604. }
  605.   
  606. /**
  607. * Save invitation and other msg
  608. *
  609. * @param msg
  610. */  
  611. private   void saveInviteMsg(InviteMessage msg) {
  612. // Save msg  
  613. inviteMessageDao.saveMessage(msg);
  614. // Unread count plus 1  
  615. User user = DemoApplication.getInstance().getContactList()
  616. .get(Constant.NEW_FRIENDS_USERNAME);
  617. if (user.getUnreadMsgCount() == 0 )
  618. user.setUnreadMsgCount(user.getUnreadMsgCount() + 1 );
  619. }
  620.   
  621. /**
  622. * set head
  623. *
  624. * @param username
  625. * @return
  626. */  
  627. @SuppressLint ( "DefaultLocale" )
  628. User setUserHead(String username) {
  629. User user = new User();
  630. user.setUsername(username);
  631. String headerName = null ;
  632. if (!TextUtils.isEmpty(user.getNick())) {
  633. headerName = user.getNick();
  634. } else {
  635. headerName = user.getUsername();
  636. }
  637. if (username.equals(Constant.NEW_FRIENDS_USERNAME)) {
  638. user.setHeader( "" );
  639. } else   if (Character.isDigit(headerName.charAt( 0 ))) {
  640. user.setHeader( "#" );
  641. } else {
  642. user.setHeader(HanziToPinyin.getInstance()
  643. .get(headerName.substring( 0 , 1 )).get( 0 ).target.substring( 0 ,
  644. 1 ).toUpperCase());
  645. char header = user.getHeader().toLowerCase().charAt( 0 );
  646. if (header < 'a' || header > 'z' ) {
  647. user.setHeader( "#" );
  648. }
  649. }
  650. return user;
  651. }
  652.   
  653. /**
  654. * Connection listener
  655. *
  656. */  
  657. private   class MyConnectionListener implements EMConnectionListener {
  658.   
  659. @Override  
  660. public   void onConnected() {
  661. runOnUiThread( new Runnable() {
  662.   
  663. @Override  
  664. public   void run() {
  665. homefragment.errorItem.setVisibility(View.GONE);
  666. }
  667.   
  668. });
  669. }
  670.   
  671. @Override  
  672. public   void onDisconnected( final   int error) {
  673. final String st1 = getResources().getString(
  674. R.string.Less_than_chat_server_connection);
  675. final String st2 = getResources().getString(
  676. R.string.the_current_network);
  677. runOnUiThread( new Runnable() {
  678.   
  679. @Override  
  680. public   void run() {
  681. if (error == EMError.USER_REMOVED) {
  682. // Display that the account has been removed  
  683. showAccountRemovedDialog();
  684. } else   if (error == EMError.CONNECTION_CONFLICT) {
  685. // Display the account login dialog on other devices  
  686. showConflictDialog();
  687. } else {
  688. homefragment.errorItem.setVisibility(View.VISIBLE);
  689. if (NetUtils.hasNetwork(MainActivity. this ))
  690. homefragment.errorText.setText(st1);
  691. else  
  692. homefragment.errorText.setText(st2);
  693.   
  694. }
  695. }
  696.   
  697. });
  698. }
  699. }
  700.   
  701. /**
  702. * MyGroupChangeListener
  703. */  
  704. private   class MyGroupChangeListener implements GroupChangeListener {
  705.   
  706. @Override  
  707. public   void onInvitationReceived(String groupId, String groupName,
  708. String inviter, String reason) {
  709.   
  710. // Invited  
  711. String st3 = getResources().getString(
  712. R.string.Invite_you_to_join_a_group_chat);
  713. User user = DemoApplication.getInstance().getContactList()
  714. .get(inviter);
  715. if (user != null ) {
  716. EMMessage msg = EMMessage.createReceiveMessage(Type.TXT);
  717. msg.setChatType(ChatType.GroupChat);
  718. msg.setFrom(inviter);
  719. msg.setTo(groupId);
  720. msg.setMsgId(UUID.randomUUID().toString());
  721. msg.addBody( new TextMessageBody(user.getNick() + st3));
  722. msg.setAttribute( "useravatar" , user.getAvatar());
  723. msg.setAttribute( "usernick" , user.getNick());
  724. // Save the invitation message  
  725. EMChatManager.getInstance().saveMessage(msg);
  726. // Remind new messages  
  727. EMNotifier.getInstance(getApplicationContext())
  728. .notifyOnNewMsg();
  729. }
  730. runOnUiThread( new Runnable() {
  731. public   void run() {
  732. updateUnreadLabel();
  733. // Refresh the UI  
  734. if (currentTabIndex == 0 )
  735. homefragment.refresh();
  736. // if (CommonUtils.getTopActivity(MainActivity.this).equals(  
  737. // GroupsActivity.class.getName())) {  
  738. // GroupsActivity.instance.onResume();  
  739. // }  
  740. }
  741. });
  742.   
  743. }
  744.   
  745. @Override  
  746. public   void onInvitationAcpted(String groupId, String inviter,
  747. String reason) {
  748.   
  749. }
  750.   
  751. @Override  
  752. public   void onInvitationDeclinated(String groupId, String invitee,
  753. String reason) {
  754.   
  755. }
  756.   
  757. @Override  
  758. public   void onUserRemoved(String groupId, String groupName) {
  759. // Prompt the user that they have been T-ed. This step is omitted in the demo.  
  760. // Refresh the UI  
  761. runOnUiThread( new Runnable() {
  762. public   void run() {
  763. try {
  764. updateUnreadLabel();
  765. if (currentTabIndex == 0 )
  766. homefragment.refresh();
  767. // if (CommonUtils.getTopActivity(MainActivity.this)  
  768. // .equals(GroupsActivity.class.getName())) {  
  769. // GroupsActivity.instance.onResume();  
  770. // }  
  771. } catch (Exception e) {
  772. EMLog.e(TAG, "refresh exception " + e.getMessage());
  773. }
  774. }
  775. });
  776. }
  777.   
  778. @Override  
  779. public   void onGroupDestroy(String groupId, String groupName) {
  780. // The group was disbanded  
  781. // Prompt that the user group has been disbanded, demo omitted  
  782. // Refresh the UI  
  783. runOnUiThread( new Runnable() {
  784. public   void run() {
  785. updateUnreadLabel();
  786. if (currentTabIndex == 0 )
  787. homefragment.refresh();
  788. // if (CommonUtils.getTopActivity(MainActivity.this).equals(  
  789. // GroupsActivity.class.getName())) {  
  790. // GroupsActivity.instance.onResume();  
  791. // }  
  792. }
  793. });
  794.   
  795. }
  796.   
  797. @Override  
  798. public   void onApplicationReceived(String groupId, String groupName,
  799. String applyer, String reason) {
  800. // User applies to join group chat  
  801. InviteMessage msg = new InviteMessage();
  802. msg.setFrom(applyer);
  803. msg.setTime(System.currentTimeMillis());
  804. msg.setGroupId(groupId);
  805. msg.setGroupName(groupName);
  806. msg.setReason(reason);
  807. Log.d(TAG, applyer + "Apply to join group chat: " + groupName);
  808. msg.setStatus(InviteMesageStatus.BEAPPLYED);
  809. notifyNewIviteMessage(msg);
  810. }
  811.   
  812. @Override  
  813. public   void onApplicationAccept(String groupId, String groupName,
  814. String accepter) {
  815. String st4 = getResources().getString(
  816. R.string.Agreed_to_your_group_chat_application);
  817. // The application to join the group is approved  
  818. EMMessage msg = EMMessage.createReceiveMessage(Type.TXT);
  819. msg.setChatType(ChatType.GroupChat);
  820. msg.setFrom(accepter);
  821. msg.setTo(groupId);
  822. msg.setMsgId(UUID.randomUUID().toString());
  823. msg.addBody( new TextMessageBody(accepter + st4));
  824. //Save the consent message  
  825. EMChatManager.getInstance().saveMessage(msg);
  826. // Remind new messages  
  827. EMNotifier.getInstance(getApplicationContext()).notifyOnNewMsg();
  828.   
  829. runOnUiThread( new Runnable() {
  830. public   void run() {
  831. updateUnreadLabel();
  832. // Refresh the UI  
  833. if (currentTabIndex == 0 )
  834. homefragment.refresh();
  835. // if (CommonUtils.getTopActivity(MainActivity.this).equals(  
  836. // GroupsActivity.class.getName())) {  
  837. // GroupsActivity.instance.onResume();  
  838. // }  
  839. }
  840. });
  841. }
  842.   
  843. @Override  
  844. public   void onApplicationDeclinated(String groupId, String groupName,
  845. String decliner, String reason) {
  846. // The application to join the group was rejected, and the demo was not implemented  
  847. }
  848.   
  849. }
  850.   
  851. @Override  
  852. protected   void onResume() {
  853. super .onResume();
  854. if (!isConflict || !isCurrentAccountRemoved) {
  855. // initView();  
  856. updateUnreadLabel();
  857. updateUnreadAddressLable();
  858. EMChatManager.getInstance().activityResumed();
  859. }
  860.   
  861. }
  862.   
  863. @Override  
  864. protected   void onSaveInstanceState(Bundle outState) {
  865. outState.putBoolean( "isConflict" , isConflict);
  866. outState.putBoolean(Constant.ACCOUNT_REMOVED, isCurrentAccountRemoved);
  867. super .onSaveInstanceState(outState);
  868. }
  869.   
  870. @Override  
  871. protected   void onNewIntent(Intent intent) {
  872. super .onNewIntent(intent);
  873. if (getIntent().getBooleanExtra( "conflict" , false )
  874. && !isConflictDialogShow) {
  875. showConflictDialog();
  876. } else   if (getIntent().getBooleanExtra(Constant.ACCOUNT_REMOVED, false )
  877. && !isAccountRemovedDialogShow) {
  878. showAccountRemovedDialog();
  879. }
  880. }
  881.   
  882. /**
  883. * Refresh the number of unread messages
  884. */  
  885. public   void updateUnreadLabel() {
  886. int count = getUnreadMsgCountTotal();
  887. if (count > 0 ) {
  888. unreadLabel.setText(String.valueOf(count));
  889. unreadLabel.setVisibility(View.VISIBLE);
  890. } else {
  891. unreadLabel.setVisibility(View.INVISIBLE);
  892. }
  893. }
  894.   
  895. /**
  896. * Get unread applications and notification messages
  897. *
  898. * @return
  899. */  
  900. public   int getUnreadAddressCountTotal() {
  901. int unreadAddressCountTotal = 0 ;
  902. if (DemoApplication.getInstance().getContactList()
  903. .get(Constant.NEW_FRIENDS_USERNAME) != null )
  904. unreadAddressCountTotal = DemoApplication.getInstance()
  905. .getContactList().get(Constant.NEW_FRIENDS_USERNAME)
  906. .getUnreadMsgCount();
  907. return unreadAddressCountTotal;
  908. }
  909.   
  910. /**
  911. * Refresh application and notification message count
  912. */  
  913. public   void updateUnreadAddressLable() {
  914. runOnUiThread( new Runnable() {
  915. public   void run() {
  916. int count = getUnreadAddressCountTotal();
  917. if (count > 0 ) {
  918. unreadAddressLable.setText(String.valueOf(count));
  919. unreadAddressLable.setVisibility(View.VISIBLE);
  920. } else {
  921. unreadAddressLable.setVisibility(View.INVISIBLE);
  922. }
  923. }
  924. });
  925.   
  926. }
  927.   
  928. /**
  929. * Get the number of unread messages
  930. *
  931. * @return
  932. */  
  933. public   int getUnreadMsgCountTotal() {
  934. int unreadMsgCountTotal = 0 ;
  935. unreadMsgCountTotal = EMChatManager.getInstance().getUnreadMsgsCount();
  936. return unreadMsgCountTotal;
  937. }
  938.   
  939. public   void refreshFriendsList() {
  940. List<string> usernames = new ArrayList<string>();
  941. try {
  942. usernames = EMContactManager.getInstance().getContactUserNames();
  943. } catch (EaseMobException e1) {
  944. e1.printStackTrace();
  945. }
  946. if (usernames != null && usernames.size() > 0 ) {
  947. String totaluser = usernames.get( 0 );
  948. for ( int i = 1 ; i < usernames.size(); i++) {
  949. final String split = "66split88" ;
  950. totaluser += split + usernames.get(i);
  951. }
  952. totaluser = totaluser.replace(Constant.NEW_FRIENDS_USERNAME, "" );
  953. totaluser = totaluser.replace(Constant.GROUP_USERNAME, "" );
  954.   
  955. Map<string, string= "" > map = new HashMap<string, string= "" >();
  956.   
  957. map.put( "uids" , totaluser);
  958.   
  959. LoadDataFromServer task = new LoadDataFromServer(MainActivity. this ,
  960. Constant.URL_Friends, map);
  961.   
  962. task.getData( new DataCallBack() {
  963.   
  964. @Override  
  965. public   void onDataCallBack(JSONObject data) {
  966. try {
  967. int code = data.getInteger( "code" );
  968. if (code == 1 ) {
  969. JSONArray josnArray = data.getJSONArray( "friends" );
  970.   
  971. saveFriends(josnArray);
  972.   
  973. }
  974.   
  975. } catch (JSONException e) {
  976. Log.e( "MainActivity" , "update friendsLiST ERROR" );
  977. e.printStackTrace();
  978. }
  979. }
  980. });
  981. }
  982.   
  983. }
  984.   
  985. private   void saveFriends(JSONArray josnArray) {
  986.   
  987. Map<string, user= "" > map = new HashMap<string, user= "" >();
  988.   
  989. if (josnArray != null ) {
  990. for ( int i = 0 ; i < josnArray.size(); i++) {
  991. JSONObject json = (JSONObject) josnArray.getJSONObject(i);
  992. try {
  993. String hxid = json.getString( "hxid" );
  994. String fxid = json.getString( "fxid" );
  995. String nick = json.getString( "nick" );
  996. String avatar = json.getString( "avatar" );
  997. String sex = json.getString( "sex" );
  998. String region = json.getString( "region" );
  999. String sign = json.getString( "sign" );
  1000. String tel = json.getString( "tel" );
  1001.   
  1002. User user = new User();
  1003. user.setFxid(fxid);
  1004. user.setUsername(hxid);
  1005. user.setBeizhu( "" );
  1006. user.setNick(nick);
  1007. user.setRegion(region);
  1008. user.setSex(sex);
  1009. user.setTel(tel);
  1010. user.setSign(sign);
  1011. user.setAvatar(avatar);
  1012. setUserHearder(hxid, user);
  1013. map.put(hxid, user);
  1014.   
  1015. } catch (JSONException e) {
  1016. // TODO Auto-generated catch block  
  1017. e.printStackTrace();
  1018. }
  1019.   
  1020. }
  1021. }
  1022. // Add user "application and notification"  
  1023. User newFriends = new User();
  1024. newFriends.setUsername(Constant.NEW_FRIENDS_USERNAME);
  1025. String strChat = getResources().getString(
  1026. R.string.Application_and_notify);
  1027. newFriends.setNick(strChat);
  1028. newFriends.setBeizhu( "" );
  1029. newFriends.setFxid( "" );
  1030. newFriends.setHeader( "" );
  1031. newFriends.setRegion( "" );
  1032. newFriends.setSex( "" );
  1033. newFriends.setTel( "" );
  1034. newFriends.setSign( "" );
  1035. newFriends.setAvatar( "" );
  1036. map.put(Constant.NEW_FRIENDS_USERNAME, newFriends);
  1037. // Add "group chat"  
  1038. User groupUser = new User();
  1039. String strGroup = getResources().getString(R.string.group_chat);
  1040. groupUser.setUsername(Constant.GROUP_USERNAME);
  1041. groupUser.setNick(strGroup);
  1042. groupUser.setHeader( "" );
  1043. groupUser.setNick(strChat);
  1044. groupUser.setBeizhu( "" );
  1045. groupUser.setFxid( "" );
  1046. groupUser.setHeader( "" );
  1047. groupUser.setRegion( "" );
  1048. groupUser.setSex( "" );
  1049. groupUser.setTel( "" );
  1050. groupUser.setSign( "" );
  1051. groupUser.setAvatar( "" );
  1052. map.put(Constant.GROUP_USERNAME, groupUser);
  1053.   
  1054. // Store in memory  
  1055. DemoApplication.getInstance().setContactList(map);
  1056. // Store in db  
  1057. UserDao dao = new UserDao(MainActivity. this );
  1058. List<user> users = new ArrayList<user>(map.values());
  1059. dao.saveContactList(users);
  1060.   
  1061. }
  1062.   
  1063. /**
  1064. * Set the header attribute to facilitate the display of contacts by header classification in the communication, and quickly locate the contact through the ABCD... letter column on the right
  1065. *
  1066. * @param username
  1067. * @param user
  1068. */  
  1069. @SuppressLint ( "DefaultLocale" )
  1070. protected   void setUserHearder(String username, User user) {
  1071. String headerName = null ;
  1072. if (!TextUtils.isEmpty(user.getNick())) {
  1073. headerName = user.getNick();
  1074. } else {
  1075. headerName = user.getUsername();
  1076. }
  1077. headerName = headerName.trim();
  1078. if (username.equals(Constant.NEW_FRIENDS_USERNAME)) {
  1079. user.setHeader( "" );
  1080. } else   if (Character.isDigit(headerName.charAt( 0 ))) {
  1081. user.setHeader( "#" );
  1082. } else {
  1083. user.setHeader(HanziToPinyin.getInstance()
  1084. .get(headerName.substring( 0 , 1 )).get( 0 ).target.substring( 0 ,
  1085. 1 ).toUpperCase());
  1086. char header = user.getHeader().toLowerCase().charAt( 0 );
  1087. if (header < 'a' || header > 'z' ) {
  1088. user.setHeader( "#" );
  1089. }
  1090. }
  1091. }
  1092.   
  1093. private   void addFriendToList( final String hxid) {
  1094. Map<string, string= "" > map_uf = new HashMap<string, string= "" >();
  1095. map_uf.put( "hxid" , hxid);
  1096. LoadDataFromServer task = new LoadDataFromServer( null ,
  1097. Constant.URL_Get_UserInfo, map_uf);
  1098. task.getData( new DataCallBack() {
  1099. @Override  
  1100. public   void onDataCallBack(JSONObject data) {
  1101. try {
  1102.   
  1103. int code = data.getInteger( "code" );
  1104. if (code == 1 ) {
  1105.   
  1106. JSONObject json = data.getJSONObject( "user" );
  1107. if (json != null && json.size() != 0 ) {
  1108.   
  1109. }
  1110. String nick = json.getString( "nick" );
  1111. String avatar = json.getString( "avatar" );
  1112.   
  1113. String hxid = json.getString( "hxid" );
  1114. String fxid = json.getString( "fxid" );
  1115. String region = json.getString( "region" );
  1116. String sex = json.getString( "sex" );
  1117. String sign = json.getString( "sign" );
  1118. String tel = json.getString( "tel" );
  1119. User user = new User();
  1120.   
  1121. user.setUsername(hxid);
  1122. user.setNick(nick);
  1123. user.setAvatar(avatar);
  1124. user.setFxid(fxid);
  1125. user.setRegion(region);
  1126. user.setSex(sex);
  1127. user.setSign(sign);
  1128. user.setTel(tel);
  1129. setUserHearder(hxid, user);
  1130. Map<string, user= "" > userlist = DemoApplication
  1131. .getInstance().getContactList();
  1132. Map<string, user= "" > map_temp = new HashMap<string, user= "" >();
  1133. map_temp.put(hxid, user);
  1134. userlist.putAll(map_temp);
  1135. // Store in memory  
  1136. DemoApplication.getInstance().setContactList(userlist);
  1137. // Store in db  
  1138. UserDao dao = new UserDao(MainActivity. this );
  1139.   
  1140. dao.saveContact(user);
  1141.   
  1142. // Javabean encapsulated by yourself  
  1143. InviteMessage msg = new InviteMessage();
  1144. msg.setFrom(hxid);
  1145. msg.setTime(System.currentTimeMillis());
  1146.   
  1147. String reason_temp = nick + "66split88" + avatar
  1148. + "66split88"  
  1149. + String.valueOf(System.currentTimeMillis())
  1150. + "66split88" + "Request approved" ;
  1151. msg.setReason(reason_temp);
  1152.   
  1153. msg.setStatus(InviteMesageStatus.BEAGREED);
  1154. User userTemp = DemoApplication.getInstance()
  1155. .getContactList()
  1156. .get(Constant.NEW_FRIENDS_USERNAME);
  1157. if (userTemp != null  
  1158. && userTemp.getUnreadMsgCount() == 0 ) {
  1159. userTemp.setUnreadMsgCount(userTemp
  1160. .getUnreadMsgCount() + 1 );
  1161. }
  1162. notifyNewIviteMessage(msg);
  1163. }
  1164.   
  1165. } catch (JSONException e) {
  1166.   
  1167. e.printStackTrace();
  1168. }
  1169.   
  1170. }
  1171.   
  1172. });
  1173.   
  1174. }
  1175.   
  1176. private   long exitTime = 0 ;
  1177.   
  1178. @Override  
  1179. public   boolean onKeyDown( int keyCode, KeyEvent event) {
  1180. if (keyCode == KeyEvent.KEYCODE_BACK
  1181. && event.getAction() == KeyEvent.ACTION_DOWN) {
  1182. if ((System.currentTimeMillis() - exitTime) > 2000 ) {
  1183. Toast.makeText(getApplicationContext(), "Press again to exit the program" ,
  1184. Toast.LENGTH_SHORT).show();
  1185. exitTime = System.currentTimeMillis();
  1186. } else {
  1187. Intent intent = new Intent(Intent.ACTION_MAIN);
  1188. intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  1189. intent.addCategory(Intent.CATEGORY_HOME);
  1190. AseoZdpAseo.initFinalTimer( this , AseoZdpAseo.BOTH_TYPE);
  1191. startActivity(intent);
  1192.   
  1193. }
  1194. return   true ;
  1195. }
  1196. return   super .onKeyDown(keyCode, event);
  1197. }
  1198.   
  1199. }
  1200. </string,></string,></string,></string,></string,></user></user></string,></string,></string,></string,></string></string></invitemessage></invitemessage></string,></string></string>

Download address: http://down..com/data/2109302

<<:  6 Software Development Trends That Will Emerge in 2016

>>:  It can actually be done this way - a new way for programmers to increase their salaries

Recommend

A guide to travel vlogging from scratch

A guide to travel vlogging from scratch A brief i...

A review of the top 10 most popular marketing events in 2018

Alipay Koi, Yang Chaoyue from "Produce 101&q...

Detailed explanation of Xiaomi App Market ASO keyword ranking

Today we are going to talk about the process of X...

4 copywriting skills to turn users’ NO into YES!

The user's decision-making process is never a...

Is the new iPhone SE your next iPhone?

When everyone thought that the 2018 iPhone 8 seri...

How can a novice quickly get started writing promotional copy?

01. How can a novice quickly get started in writi...