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"-->
|
<!-- android:launchMode="singleTask"-->
|
||||||
<activity android:name="org.linphone.IncallActivity"
|
<activity android:name="org.linphone.IncallActivity"
|
||||||
android:theme="@android:style/Theme.NoTitleBar"
|
android:theme="@android:style/Theme.NoTitleBar"
|
||||||
android:launchMode="singleInstance"
|
android:launchMode="singleTask"
|
||||||
android:configChanges="keyboardHidden|orientation">
|
android:configChanges="keyboardHidden|orientation">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
|
|
|
@ -42,7 +42,6 @@ import org.linphone.ui.Numpad;
|
||||||
|
|
||||||
import android.app.AlertDialog;
|
import android.app.AlertDialog;
|
||||||
import android.app.Dialog;
|
import android.app.Dialog;
|
||||||
import android.content.Context;
|
|
||||||
import android.content.DialogInterface;
|
import android.content.DialogInterface;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.content.pm.ActivityInfo;
|
import android.content.pm.ActivityInfo;
|
||||||
|
@ -386,12 +385,12 @@ public class IncallActivity extends AbstractCalleesActivity implements
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void doTransfer() {
|
// private void doTransfer() {
|
||||||
LinphoneCall tCall = lc().getCurrentCall();
|
// LinphoneCall tCall = lc().getCurrentCall();
|
||||||
if (tCall != null) {
|
// if (tCall != null) {
|
||||||
prepareForTransferingExistingOrNewCall(tCall);
|
// prepareForTransferingExistingOrNewCall(tCall);
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
|
|
||||||
private void prepareForTransferingExistingOrNewCall(final LinphoneCall call) {
|
private void prepareForTransferingExistingOrNewCall(final LinphoneCall call) {
|
||||||
// Include inconf calls
|
// Include inconf calls
|
||||||
|
|
Loading…
Reference in a new issue