Android Smack MessageEventListener
Posted
技术标签:
【中文标题】Android Smack MessageEventListener【英文标题】: 【发布时间】:2011-08-30 09:53:55 【问题描述】:我正在尝试使用 XMPP 的消息事件接口。据我了解,您可以使用“已请求递送通知”标志来标记您发送的消息,并且收件人有责任向您发送此通知。有没有人成功实施这个?有人可以给我一些示例代码吗?我的代码不起作用。我的监听器(MessageEventNotificationListener、MessageEventRequestListener)的回调永远不会被调用:
@Override
public void onCreate( Bundle savedInstanceState )
super.onCreate( savedInstanceState );
setContentView( R.layout.chat );
PacketFilter filter = new MessageTypeFilter(Message.Type.chat);
VajasKifli.connection.addPacketListener( this, filter );
tv = ( TextView ) findViewById( R.id.textView1 );
tvState = ( TextView ) findViewById( R.id.textView2 );
et = ( EditText ) findViewById( R.id.editText1 );
et.addTextChangedListener( this );
mem = new MessageEventManager( VajasKifli.connection );
mem.addMessageEventNotificationListener( this );
mem.addMessageEventRequestListener( this );
sdm = new ServiceDiscoveryManager( VajasKifli.connection );
VajasKifli.log( "sdm: " + sdm );
stateManager = ChatStateManager.getInstance( VajasKifli.connection );
recipient = getIntent().getStringExtra( "recipient" );
chat = VajasKifli.connection.getChatManager().createChat( recipient, "chat-" + recipient, this );
VajasKifli.log( "chat created: " + chat );
VajasKifli.connection.getChatManager().addChatListener( this );
sv = ( ScrollView ) findViewById( R.id.scrollView1 );
handler = new ChatHandler();
public void onClickSend( View view )
String text = et.getText().toString();
if( text.length() > 0 )
VajasKifli.log( "sending text [" + text + "] to [" + recipient + "]" );
try
Message message = new Message();
message.setBody( text );
MessageEventManager.addNotificationsRequests( message, false, true, false, false );
chat.sendMessage( message );
stateManager.setCurrentState( ChatState.active, chat );
lastState = ChatState.active;
tv.append( "\n" + VajasKifli.connection.getUser().replaceFirst( "@.*", "" ) + ": " + text );
sv.fullScroll( ScrollView.FOCUS_DOWN );
catch( XMPPException e )
VajasKifli.logError( e.toString() );
//showToast( "sent: " + text );
【问题讨论】:
你能分享一下你是如何解决这个问题的吗? 【参考方案1】:您应该通过 wireshark 或通过 smack 调试选项获得 XMPP 连接的数据包跟踪,以确保传递通知确实是由连接的另一端发送的。如果不是,这将解释为什么不调用侦听器。
SMACK 中的消息事件是通过现已过时的XEP-22 完成的。很有可能对方没有实施这种过时的机制。
【讨论】:
【参考方案2】:这太令人困惑了。现在我使用 DefaultPacketExtension 并向自己发送我需要的事件。这要简单得多,易于理解并且有效。
【讨论】:
如果你有任何解决方案,请告诉我@cuda 能否请您详细说明或分享您如何实施的示例。提前致谢。以上是关于Android Smack MessageEventListener的主要内容,如果未能解决你的问题,请参考以下文章