Fix conference details activity launch issue
This commit is contained in:
parent
b0ba6158e4
commit
49ba1f44ba
2 changed files with 7 additions and 8 deletions
|
@ -76,7 +76,7 @@
|
|||
<!-- android:launchMode="singleTask"-->
|
||||
<activity android:name="org.linphone.IncallActivity"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:launchMode="singleInstance"
|
||||
android:launchMode="singleTask"
|
||||
android:configChanges="keyboardHidden|orientation">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
|
|
@ -42,7 +42,6 @@ import org.linphone.ui.Numpad;
|
|||
|
||||
import android.app.AlertDialog;
|
||||
import android.app.Dialog;
|
||||
import android.content.Context;
|
||||
import android.content.DialogInterface;
|
||||
import android.content.Intent;
|
||||
import android.content.pm.ActivityInfo;
|
||||
|
@ -386,12 +385,12 @@ public class IncallActivity extends AbstractCalleesActivity implements
|
|||
}
|
||||
}
|
||||
|
||||
private void doTransfer() {
|
||||
LinphoneCall tCall = lc().getCurrentCall();
|
||||
if (tCall != null) {
|
||||
prepareForTransferingExistingOrNewCall(tCall);
|
||||
}
|
||||
}
|
||||
// private void doTransfer() {
|
||||
// LinphoneCall tCall = lc().getCurrentCall();
|
||||
// if (tCall != null) {
|
||||
// prepareForTransferingExistingOrNewCall(tCall);
|
||||
// }
|
||||
// }
|
||||
|
||||
private void prepareForTransferingExistingOrNewCall(final LinphoneCall call) {
|
||||
// Include inconf calls
|
||||
|
|
Loading…
Reference in a new issue