注册

环信好友监听无效


EMContactManager.getInstance().setContactListener(new EMContactListener() {})
 
 
这个根本就监听不到,发送又没返回,怎么查看问题在哪里
已邀请:

beyond - imgeek运营

赞同来自: forgotears

描述太少了,给出几个可能的原因检查下把
1:EMChat.getInstance().setAppInited();

2:public void onContactInvited(String username, String reason) { //收到好友邀请 }
 
3:得把好友监听写在mainactivity里面。
如果取消验证是可以添加成功的  不过监听还是收不到
在AndroidManifest.xml中添加如下代码:

<receiver android:name="com.easemob.chat.EMMonitorReceiver">
            <intent-filter>
                <action android:name="android.intent.action.PACKAGE_REMOVED"/>
                <data android:scheme="package"/>
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED"/>
                <action android:name="android.intent.action.USER_PRESENT" />
            </intent-filter>
</receiver>

要回复问题请先登录注册