使用OxygenOS 4.1.6在Android 7.1.1中保持服务活动

时间:2017-08-15 10:56:52

标签: android android-service

嗨,我想保持服务活着 这是我的服务代码

public class  Myservice1 extends Service{

@Override
public int onStartCommand(Intent intent,int flags,int startdid){
Toast.makeText(getApplicationContext(),"works",Toast.LENGHT_LONG).show();
return START_STICKY;
}
}

这是我的清单文件

<service
            android:name=".MyService1"
            android:enabled="true"

            />

这在Android 7.0中完美运行 但是当我在Android 7.1.1中使用OxygenOS 4.1.6在一加3T中运行它时,服务在应用程序从最近的应用程序关闭后被杀死,但其他应用程序(如whatsapp和truecaller)的服务运行完美。

0 个答案:

没有答案