Removed new_task flag from overlays
This commit is contained in:
parent
ada430e8b8
commit
a1892ccb13
2 changed files with 2 additions and 6 deletions
|
@ -99,9 +99,7 @@ public class LinphoneGL2JNIViewOverlay extends org.linphone.mediastream.video.di
|
|||
@Override
|
||||
public void onClick(View v) {
|
||||
Context context = LinphoneService.instance();
|
||||
Intent intent =
|
||||
new Intent(context, LinphoneActivity.class)
|
||||
.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||
Intent intent = new Intent(context, LinphoneActivity.class);
|
||||
context.startActivity(intent);
|
||||
}
|
||||
});
|
||||
|
|
|
@ -108,9 +108,7 @@ public class LinphoneTextureViewOverlay extends RelativeLayout implements Linpho
|
|||
@Override
|
||||
public void onClick(View v) {
|
||||
Context context = LinphoneService.instance();
|
||||
Intent intent =
|
||||
new Intent(context, LinphoneActivity.class)
|
||||
.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||
Intent intent = new Intent(context, LinphoneActivity.class);
|
||||
context.startActivity(intent);
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue