mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-21 04:58:14 +00:00
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:
parent
b15cee59b3
commit
34a0b4eb5e
1 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue