通过BroadcastReciver接收来电时,将应用程序从后台运行到前台

时间:2015-07-13 13:48:36

标签: xamarin.android xamarin.forms

我正在开发一个使用Xamarin的跨平台应用程序,用于SIP呼叫。我有传入和传出呼叫工作。

虽然,当应用程序在后台运行时,我遇到接收呼叫的问题。

我已经尝试在收到电话时将应用程序带到前面。我使用的代码如下:

在我的MainActivity中

private void registerReceiver()
{
    IncomingCallReceiver callReceiver = new IncomingCallReceiver();
    IntentFilter sipIntentFilter = new IntentFilter();
    sipIntentFilter.AddAction("com.NelsonApp.INCOMING_CALL"); 
    this.RegisterReceiver(callReceiver, sipIntentFilter);
}

和我的BroadcastReceiver

public override void OnReceive(Context context, Intent intent)
{  
    DialerCallListener listener = new DialerCallListener(); 
    SIPRegistration.call = SIPRegistration.sipManager.TakeAudioCall(intent, listener);

    string str = SIPRegistration.call.PeerProfile.UriString;
    char [] strArray = {':','@'};
    var value = str.Split(strArray)[1];

    Intent newIntent = new Intent(context, typeof(MainActivity));

    newIntent.AddFlags(ActivityFlags.FromBackground);
    newIntent.AddCategory(Intent.CategoryLauncher);
    context.StartActivity(newIntent);

    PlaySound myActivity = new PlaySound();
    myActivity.PlayRingtone(context);

    MainActivity.isIncomingCall = true;
    MessagingCenter.Send(string.Empty, "IncomingCall", value);
}

我尝试使用ActivityFlagsNewTaskSingleTopReorderToFrontReceiverForegroundFromBackground等不同的BroughtToFront。但是,注意到会将我的应用程序带到前台。

我还能从这里做些什么?

我尝试过这个Link 。虽然它没有帮助。

1 个答案:

答案 0 :(得分:1)

var intent = new Intent(context, typeof (MainActivity));
intent.AddFlags(ActivityFlags.NewTask);
context.StartActivity(intent);

应该启动你的应用程序。

您确定已拨打BroadcastReceiver吗?