Fundamental incall UI changes.

- single click for resuming/pausing call;
- long click for advanced call/conference interaction;
- terminate call action according to situation;
- conference details activity;
- cleanings.
This commit is contained in:
Guillaume Beraudo 2011-11-22 11:12:57 +01:00
parent b15cee59b3
commit 34a0b4eb5e

View file

@ -501,9 +501,9 @@ class LinphoneCoreImpl implements LinphoneCore {
leaveConference(nativePtr);
}
private native void enterConference(long nativePtr);
public synchronized void enterConference() {
enterConference(nativePtr);
private native boolean enterConference(long nativePtr);
public synchronized boolean enterConference() {
return enterConference(nativePtr);
}
private native boolean isInConference(long nativePtr);