i am developing a simple chat application.
i am able to chat with multiple users simultaneously, but my problem is that i am not able to show "is typing..." status to the other user.
i referred to this link How to get typing status notification in XMPP but dint help :(
any help will be appreciated.
my sample code:
String text = textMessage.getText().toString();
String to = recipient.getText().toString();
Log.i("Composing=>", "Sending text " + text + " to " + to);
Message msg1 = new Message(to, Message.Type.chat);
msg1.setFrom("user1@192.168.0.98"); // my id
MessageEventManager event=new MessageEventManager(connection);
//recipient id
event.sendComposingNotification("tech1@192.168.0.98",msg1.getPacketId());
if i am chatting in browser then it working fine and i am able to see the status"is typing" when the other user is typing in his window.