How to make Service that is unremovable even if killed by the system?

后端 未结 3 1547
北荒
北荒 2021-01-25 22:46

I am creating a Blue light filter app. So that, I want to display the view over all the apps. I did it by the following Service,

public class OverlayService exte         


        
3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-25 23:23

    Try this add this method in service class

    @Override
    public void onTaskRemoved(Intent rootIntent){
        super.onTaskRemoved(rootIntent);
     }
    

提交回复
热议问题