在好例子网,分享、交流、成长!
您当前所在位置:首页Java 开发实例Android平台开发 → 高仿微信源码(凡信开源客户端代码)

高仿微信源码(凡信开源客户端代码)

Android平台开发

下载此实例
  • 开发语言:Java
  • 实例大小:17.16M
  • 下载次数:31
  • 浏览次数:1018
  • 发布时间:2015-11-25
  • 实例类别:Android平台开发
  • 发 布 人:tompeson
  • 文件格式:.zip
  • 所需积分:4
 相关标签: 凡信开源客户端代码 XMPP

实例介绍

【实例简介】Fanxin2.1.6_byXMPP11 有些只是实现了UI,并没有实现程序功能

【实例截图】

【核心代码】


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
/**
 * Copyright (C) 2013-2014 EaseMob Technologies. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
 
package com.fanxin.app.activity;
 
import java.text.SimpleDateFormat;
import java.util.UUID;
 
import android.content.Context;
import android.media.AudioManager;
import android.media.Ringtone;
import android.media.RingtoneManager;
import android.media.SoundPool;
import android.net.Uri;
import android.os.Bundle;
import android.os.Handler;
import android.os.SystemClock;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.WindowManager;
import android.view.animation.AlphaAnimation;
import android.view.animation.Animation;
import android.widget.Button;
import android.widget.Chronometer;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;
import android.widget.Toast;
 
import com.easemob.chat.EMCallStateChangeListener;
import com.easemob.chat.EMChatManager;
import com.easemob.chat.EMMessage;
import com.easemob.chat.TextMessageBody;
import com.fanxin.app.Constant;
import com.fanxin.app.R;
import com.easemob.exceptions.EMServiceNotReadyException;
 
/**
 * 语音通话页面
 *
 */
public class VoiceCallActivity extends BaseActivity implements OnClickListener {
    private LinearLayout comingBtnContainer;
    private Button hangupBtn;
    private Button refuseBtn;
    private Button answerBtn;
    private ImageView muteImage;
    private ImageView handsFreeImage;
 
    private boolean isMuteState;
    private boolean isHandsfreeState;
    private boolean isInComingCall;
    private TextView callStateTextView;
    private SoundPool soundPool;
    private int streamID;
    private boolean endCallTriggerByMe = false;
    private Handler handler = new Handler();
    private Ringtone ringtone;
    private int outgoing;
    private TextView nickTextView;
    private TextView durationTextView;
    private SimpleDateFormat dateFormat;
    private WindowManager windowManager;
    private AudioManager audioManager;
    private Chronometer chronometer;
 
    private String callDruationText;
    private String username;
    private CallingState callingState = CallingState.CANCED;
    String msgid;
    private boolean isAnswered;
    private LinearLayout voiceContronlLayout;
 
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_voice_call);
 
        comingBtnContainer = (LinearLayout) findViewById(R.id.ll_coming_call);
        refuseBtn = (Button) findViewById(R.id.btn_refuse_call);
        answerBtn = (Button) findViewById(R.id.btn_answer_call);
        hangupBtn = (Button) findViewById(R.id.btn_hangup_call);
        muteImage = (ImageView) findViewById(R.id.iv_mute);
        handsFreeImage = (ImageView) findViewById(R.id.iv_handsfree);
        callStateTextView = (TextView) findViewById(R.id.tv_call_state);
        nickTextView = (TextView) findViewById(R.id.tv_nick);
        durationTextView = (TextView) findViewById(R.id.tv_calling_duration);
        chronometer = (Chronometer) findViewById(R.id.chronometer);
        voiceContronlLayout = (LinearLayout) findViewById(R.id.ll_voice_control);
 
        refuseBtn.setOnClickListener(this);
        answerBtn.setOnClickListener(this);
        hangupBtn.setOnClickListener(this);
        muteImage.setOnClickListener(this);
        handsFreeImage.setOnClickListener(this);
 
        getWindow().addFlags(
                WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON | WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD
                        | WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED | WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON);
        audioManager = (AudioManager) this.getSystemService(Context.AUDIO_SERVICE);
        audioManager.setMicrophoneMute(false);
 
        // 注册语音电话的状态的监听
        addCallStateListener();
        msgid = UUID.randomUUID().toString();
 
        username = getIntent().getStringExtra("username");
        // 语音电话是否为接收的
        isInComingCall = getIntent().getBooleanExtra("isComingCall", false);
 
        // 设置通话人
        nickTextView.setText(username);
        if (!isInComingCall) {// 拨打电话
            soundPool = new SoundPool(1, AudioManager.STREAM_RING, 0);
            outgoing = soundPool.load(this, R.raw.outgoing, 1);
 
            comingBtnContainer.setVisibility(View.INVISIBLE);
            hangupBtn.setVisibility(View.VISIBLE);
            callStateTextView.setText("正在呼叫...");
            handler.postDelayed(new Runnable() {
                public void run() {
                    streamID = playMakeCallSounds();
                }
            }, 300);
            try {
                // 拨打语音电话
                EMChatManager.getInstance().makeVoiceCall(username);
            } catch (EMServiceNotReadyException e) {
                e.printStackTrace();
                runOnUiThread(new Runnable() {
                    public void run() {
                        Toast.makeText(VoiceCallActivity.this, "尚未连接至服务器", 0).show();
                    }
                });
            }
        } else { // 有电话进来
            voiceContronlLayout.setVisibility(View.INVISIBLE);
            Uri ringUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_RINGTONE);
            audioManager.setMode(AudioManager.MODE_RINGTONE);
            audioManager.setSpeakerphoneOn(true);
            ringtone = RingtoneManager.getRingtone(this, ringUri);
            ringtone.play();
        }
    }
 
    /**
     * 设置电话监听
     */
    void addCallStateListener() {
        EMChatManager.getInstance().addVoiceCallStateChangeListener(new EMCallStateChangeListener() {
 
            @Override
            public void onCallStateChanged(CallState callState, CallError error) {
                // Message msg = handler.obtainMessage();
                switch (callState) {
 
                case CONNECTING: // 正在连接对方
                    VoiceCallActivity.this.runOnUiThread(new Runnable() {
 
                        @Override
                        public void run() {
                            // TODO Auto-generated method stub
                            callStateTextView.setText("正在连接对方...");
                        }
 
                    });
                    break;
                case CONNECTED: // 双方已经建立连接
                    VoiceCallActivity.this.runOnUiThread(new Runnable() {
 
                        @Override
                        public void run() {
                            // TODO Auto-generated method stub
                            callStateTextView.setText("已经和对方建立连接,等待对方接受...");
                        }
 
                    });
                    break;
 
                case ACCEPTED: // 电话接通成功
                    VoiceCallActivity.this.runOnUiThread(new Runnable() {
 
                        @Override
                        public void run() {
                            try {
                                if (soundPool != null)
                                    soundPool.stop(streamID);
                            } catch (Exception e) {
                            }
                            closeSpeakerOn();
                            chronometer.setVisibility(View.VISIBLE);
                            chronometer.setBase(SystemClock.elapsedRealtime());
                            // 开始记时
                            chronometer.start();
                            callStateTextView.setText("通话中...");
                            callingState = CallingState.NORMAL;
                        }
 
                    });
                    break;
                case DISCONNNECTED: // 电话断了
                    final CallError fError = error;
                    VoiceCallActivity.this.runOnUiThread(new Runnable() {
                        private void postDelayedCloseMsg() {
                            handler.postDelayed(new Runnable() {
 
                                @Override
                                public void run() {
                                    saveCallRecord();
                                    Animation animation = new AlphaAnimation(1.0f, 0.0f);
                                    animation.setDuration(800);
                                    findViewById(R.id.root_layout).startAnimation(animation);
                                    finish();
                                }
 
                            }, 200);
                        }
 
                        @Override
                        public void run() {
                            chronometer.stop();
                            callDruationText = chronometer.getText().toString();
 
                            if (fError == CallError.REJECTED) {
                                callingState = CallingState.BEREFUESD;
                                callStateTextView.setText("对方拒绝接受!...");
                            } else if (fError == CallError.ERROR_TRANSPORT) {
                                callStateTextView.setText("连接建立失败!...");
                            } else if (fError == CallError.ERROR_INAVAILABLE) {
                                callingState = CallingState.OFFLINE;
                                callStateTextView.setText("对方不在线,请稍后再拨...");
                            } else if (fError == CallError.ERROR_BUSY) {
                                callingState = CallingState.BUSY;
                                callStateTextView.setText("对方正在通话中,请稍后再拨");
                            } else if (fError == CallError.ERROR_NORESPONSE) {
                                callingState = CallingState.NORESPONSE;
                                callStateTextView.setText("对方未接听");
                            } else {
                                if (isAnswered) {
                                    callingState = CallingState.NORMAL;
                                    if (endCallTriggerByMe) {
                                        callStateTextView.setText("挂断...");
                                    } else {
                                        callStateTextView.setText("对方已经挂断...");
                                    }
                                } else {
                                    if (isInComingCall) {
                                        callingState = CallingState.UNANSWERED;
                                        callStateTextView.setText("未接听");
                                    } else {
                                        callingState = CallingState.CANCED;
                                        callStateTextView.setText("已取消");
                                    }
                                }
                            }
                            postDelayedCloseMsg();
                        }
 
                    });
 
                    break;
 
                default:
                    break;
                }
 
            }
        });
    }
 
    @Override
    public void onClick(View v) {
        switch (v.getId()) {
        case R.id.btn_refuse_call: // 拒绝接听
            if (ringtone != null)
                ringtone.stop();
            try {
                EMChatManager.getInstance().rejectCall();
            } catch (Exception e1) {
                e1.printStackTrace();
                saveCallRecord();
                finish();
            }
            callingState = CallingState.REFUESD;
            break;
 
        case R.id.btn_answer_call: // 接听电话
            comingBtnContainer.setVisibility(View.INVISIBLE);
            hangupBtn.setVisibility(View.VISIBLE);
            voiceContronlLayout.setVisibility(View.VISIBLE);
            if (ringtone != null)
                ringtone.stop();
            closeSpeakerOn();
            if (isInComingCall) {
                try {
                    isAnswered = true;
                    EMChatManager.getInstance().answerCall();
                } catch (Exception e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                    saveCallRecord();
                    finish();
                }
            }
            break;
 
        case R.id.btn_hangup_call: // 挂断电话
            if (soundPool != null)
                soundPool.stop(streamID);
            endCallTriggerByMe = true;
            try {
                EMChatManager.getInstance().endCall();
            } catch (Exception e) {
                e.printStackTrace();
                saveCallRecord();
                finish();
            }
            break;
 
        case R.id.iv_mute: // 静音开关
            if (isMuteState) {
                // 关闭静音
                muteImage.setImageResource(R.drawable.icon_mute_normal);
                audioManager.setMicrophoneMute(false);
                isMuteState = false;
            } else {
                // 打开静音
                muteImage.setImageResource(R.drawable.icon_mute_on);
                audioManager.setMicrophoneMute(true);
                isMuteState = true;
            }
            break;
        case R.id.iv_handsfree: // 免提开关
            if (isHandsfreeState) {
                // 关闭免提
                handsFreeImage.setImageResource(R.drawable.icon_speaker_normal);
                closeSpeakerOn();
                isHandsfreeState = false;
            } else {
                handsFreeImage.setImageResource(R.drawable.icon_speaker_on);
                openSpeakerOn();
                isHandsfreeState = true;
            }
            break;
        default:
            break;
        }
    }
 
    /**
     * 播放拨号响铃
     *
     * @param sound
     * @param number
     */
    private int playMakeCallSounds() {
        try {
            // 最大音量
            float audioMaxVolumn = audioManager.getStreamMaxVolume(AudioManager.STREAM_RING);
            // 当前音量
            float audioCurrentVolumn = audioManager.getStreamVolume(AudioManager.STREAM_RING);
            float volumnRatio = audioCurrentVolumn / audioMaxVolumn;
 
            audioManager.setMode(AudioManager.MODE_RINGTONE);
            audioManager.setSpeakerphoneOn(false);
 
            // 播放
            int id = soundPool.play(outgoing, // 声音资源
                    volumnRatio, // 左声道
                    volumnRatio, // 右声道
                    1, // 优先级,0最低
                    -1, // 循环次数,0是不循环,-1是永远循环
                    1); // 回放速度,0.5-2.0之间。1为正常速度
            return id;
        } catch (Exception e) {
            return -1;
        }
    }
 
    @Override
    protected void onDestroy() {
        if (soundPool != null)
            soundPool.release();
        if (ringtone != null && ringtone.isPlaying())
            ringtone.stop();
        audioManager.setMode(AudioManager.MODE_NORMAL);
        super.onDestroy();
    }
 
    @Override
    public void onBackPressed() {
        EMChatManager.getInstance().endCall();
        callDruationText = chronometer.getText().toString();
        saveCallRecord();
        finish();
    }
 
    // 打开扬声器
    public void openSpeakerOn() {
        try {
//          audioManager.setMode(AudioManager.MODE_IN_CALL);
            AudioManager audioManager = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
 
            if (!audioManager.isSpeakerphoneOn())
                audioManager.setSpeakerphoneOn(true);
             audioManager.setMode(AudioManager.MODE_IN_COMMUNICATION);
//          audioManager.setStreamVolume(AudioManager.STREAM_VOICE_CALL, audioManager.getStreamMaxVolume(AudioManager.STREAM_VOICE_CALL),
//                  AudioManager.STREAM_VOICE_CALL);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
 
    // 关闭扬声器
    public void closeSpeakerOn() {
 
        try {
            AudioManager audioManager = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
            if (audioManager != null) {
//              int curVolume = audioManager.getStreamVolume(AudioManager.STREAM_VOICE_CALL);
                if (audioManager.isSpeakerphoneOn())
                    audioManager.setSpeakerphoneOn(false);
                 audioManager.setMode(AudioManager.MODE_IN_COMMUNICATION);
//              audioManager.setStreamVolume(AudioManager.STREAM_VOICE_CALL, curVolume, AudioManager.STREAM_VOICE_CALL);
 
            }
 
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
 
    /**
     * 保存通话消息记录
     */
    private void saveCallRecord() {
        EMMessage message = null;
        TextMessageBody txtBody = null;
        if (!isInComingCall) { // 打出去的通话
            message = EMMessage.createSendMessage(EMMessage.Type.TXT);
            message.setReceipt(username);
        } else {
            message = EMMessage.createReceiveMessage(EMMessage.Type.TXT);
            message.setFrom(username);
        }
 
        switch (callingState) {
        case NORMAL:
            txtBody = new TextMessageBody("通话时长 "   callDruationText);
            break;
        case REFUESD:
            txtBody = new TextMessageBody("已拒绝");
            break;
        case BEREFUESD:
            txtBody = new TextMessageBody("对方已拒绝");
            break;
        case OFFLINE:
            txtBody = new TextMessageBody("对方不在线");
            break;
        case BUSY:
            txtBody = new TextMessageBody("对方正在通话中");
            break;
        case NORESPONSE:
            txtBody = new TextMessageBody("对方未接听");
            break;
        case UNANSWERED:
            txtBody = new TextMessageBody("未接听");
            break;
        default:
            txtBody = new TextMessageBody("已取消");
            break;
        }
        // 设置扩展属性
        message.setAttribute(Constant.MESSAGE_ATTR_IS_VOICE_CALL, true);
 
        // 设置消息body
        message.addBody(txtBody);
        message.setMsgId(msgid);
 
        // 保存
        EMChatManager.getInstance().saveMessage(message, false);
    }
 
    enum CallingState {
        CANCED, NORMAL, REFUESD, BEREFUESD, UNANSWERED, OFFLINE, NORESPONSE, BUSY
    }
}


实例下载地址

高仿微信源码(凡信开源客户端代码)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

第 1 楼 javahand 发表于: 2015-11-26 16:13 17
很好的一个AmbilWarnaDialog

支持(0) 盖楼(回复)

第 2 楼 javahand 发表于: 2015-11-26 16:13 22
很好的一个AmbilWarnaDialog

支持(0) 盖楼(回复)

发表评论

(您的评论需要经过审核才能显示)

查看所有2条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警