Full Screen Notification only showing as a Heads Up

前端 未结 2 1668
春和景丽
春和景丽 2020-12-30 23:02

I have been banging my head against the table with this problem for 3 days now, please tell me where I have strayed.

When I am getting an incoming VoIP call, I am try

2条回答
  •  情话喂你
    2020-12-30 23:13

    Figured it out! It was something stupid just as I suspected.

    In my IncomingCallActivity I had the following bit of code

    public void onPause() {
        super.onPause();
        finish();
    }
    

    It turns out that something having to do with how Notifications get shown actually calls onPause, therefore finishing the activity.

    Thanks to @JohanShogun for attempting to help out.

提交回复
热议问题