gpt4 book ai didi

android 使用 START_STICKY 启动前台服务

转载 作者:行者123 更新时间:2023-11-29 02:22:36 32 4
gpt4 key购买 nike

我无法理解 android 关于服务的新功能。在 google 文档中,在 oreo 之后,开发人员必须在应用程序处于后台时使用前台服务来启动服务。

我找到了这个描述。

'从 Android O 开始,如果您的应用程序处于后台(检查以上三个条件),则允许您的应用程序创建和运行后台服务几分钟。

几分钟后,您的应用程序将进入空闲阶段。当您的应用程序进入空闲阶段时,系统将停止所有后台服务,就像您的服务调用 Service.stopSelf() 一样。'

我无法理解,即使我使用 START_STICKY 启动服务,它不会再次启动吗?我知道如果我从 START_STICKY 开始,它会在 kill 后完全重新启动。为什么我必须使用 JobScheduler 来满足某些需求(位置更新等)。有人可以解释一下吗?我无法理解谷歌文档很好。

我现在在 galaxy note 8 api26 手机上测试它。我在应用程序启动时使用 startService 启动服务,并在关闭应用程序后重新启动。旧版本之间有什么区别

谢谢。

最佳答案

    public class MyActivity2 extends Activity {

private Intent serviceIntent;

@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
serviceIntent = new Intent(this, MyService.class);
serviceIntent.putExtra("name", "ahmet vefa saruhan");
startService(serviceIntent);
findViewById(R.id.textview).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
stopService(new Intent(getApplicationContext(),MyService.class));
}
});
}
}
    public class MyService extends Service {

private String myaction;

@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}

@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Log.d("MYSERVICE STATUS: "," ONSTARTCOMMAND action : " + ((intent != null && intent.getStringExtra("name") != null) ? intent.getStringExtra("name") : "yok") + " OLD ACTION : "+(myaction != null ? myaction : "yok"));
Log.d("MYTHREAD name : ",Thread.currentThread().getName());
//intent.putExtra("name","isim değişti");
myaction = (intent != null) ? intent.getAction() : null;
return START_STICKY;
}

@Override
public void onCreate() {
super.onCreate();
Log.d("MYSERVICE STATUS: "," ONCREATED");
}

@RequiresApi(api = Build.VERSION_CODES.O)
private void startMyOwnForeground()
{
String NOTIFICATION_CHANNEL_ID = "example.permanence";
String channelName = "Background Service";
NotificationChannel chan = new NotificationChannel(NOTIFICATION_CHANNEL_ID, channelName, NotificationManager.IMPORTANCE_NONE);
chan.setLightColor(Color.BLUE);
chan.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);

NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
assert manager != null;
manager.createNotificationChannel(chan);

NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, NOTIFICATION_CHANNEL_ID);
Notification notification = notificationBuilder.setOngoing(true)
.setContentTitle("App is running in background")
.setPriority(NotificationManager.IMPORTANCE_MIN)
.setCategory(Notification.CATEGORY_SERVICE)
.build();
startForeground(2, notification);
}

@Override
public void onDestroy() {
Log.d("MYSERVICE STATUS: "," ONDESTROYED");
super.onDestroy();
}

@Override
public void onTaskRemoved(Intent rootIntent) {
Log.d("MYSERVICE STATUS: "," onTaskRemoved");
super.onTaskRemoved(rootIntent);
}
}

关于android 使用 START_STICKY 启动前台服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54365395/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com