Step 1- Application is not exist in recent app list (App has been removed from recent app list).
Step 2- As soon as I got notification open IncomingCall activity, User accept the call.
Step 3- User click on disconnect button finish the IncomingCall activity.
Problem- Application showing in recent app list even app was not in recent app list previously.
Manifest entry
<activity
android:name=".activities.IncomingCall"
android:excludeFromRecents="true"
android:launchMode="singleTop"
android:screenOrientation="portrait" >
</activity>
In the activity using
public void onClick(View v) {
switch (v.getId()) {
case R.id.onCallDisconnectButton:
phoneCallBaseClass.disconnect();
IncomingCall.this.finish();
break;
}
}
And also I have tried below link but it will work when app already exist in background
Remove app from recent apps programmatically
OR Is there any other way to show incoming call view So that it will not persist in history.
you can take example of any VoIP calls app-
Remove app from recent app list after that incoming call came, user disconnect the call activity(IncomingCallActivity) would not be exist in recent app list. But in My case activity persist in recent app list after disconnecting the call.
Thanks
So, restart your device and check if the Recents button started working. If the issue persists, check the navigation settings and make sure and enable/disable Buttons. This might be a temporary system bug and disabling and re-enabling on-screen buttons in Navigation settings should fix the problem. 2.
You'll be able to see your recent apps with a single tap. From the Home screen, tap the Recents icon to the left of the Home button. All of your active or opened apps will be listed. If you've customized your Navigation bar, Recents may be located on the right, unless you're using full screen gestures.
Add
android:excludeFromRecents="true"
to the activity tag of your launcher activity in AndroidManifest.xml file
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:excludeFromRecents="true">
....
</activity>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With