Fixed tutorials for android

This commit is contained in:
Sylvain Berfini 2014-01-06 16:18:58 +01:00
parent aeb99d09d9
commit 13ac82f066
4 changed files with 26 additions and 0 deletions

View file

@ -280,5 +280,11 @@ public class TutorialBuddyStatus implements LinphoneCoreListener {
}
@Override
public void isComposingReceived(LinphoneCore lc, LinphoneChatRoom cr) {
// TODO Auto-generated method stub
}
}

View file

@ -202,5 +202,13 @@ public class TutorialChatRoom implements LinphoneCoreListener, LinphoneChatMessa
}
@Override
public void isComposingReceived(LinphoneCore lc, LinphoneChatRoom cr) {
if (cr.isRemoteComposing())
write("Remote is writing a message");
else
write("Remote has stop writing");
}
}

View file

@ -206,5 +206,11 @@ public class TutorialHelloWorld implements LinphoneCoreListener {
}
@Override
public void isComposingReceived(LinphoneCore lc, LinphoneChatRoom cr) {
// TODO Auto-generated method stub
}
}

View file

@ -237,6 +237,12 @@ public class TutorialRegistration implements LinphoneCoreListener {
}
@Override
public void isComposingReceived(LinphoneCore lc, LinphoneChatRoom cr) {
// TODO Auto-generated method stub
}
}