Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to turn on service in Android8.0

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article shows you how to open service in Android 8.0, the content is concise and easy to understand, absolutely can make you shine, through the detailed introduction of this article I hope you can gain something.

reason

Android 8.0 has a complication; background apps are not allowed to create background services. As a result, Android 8.0 introduces a completely new method, Context.startForegroundService(), to launch new services in the foreground. After the system creates a service, the app has 5 seconds to call the service's startForeground() method to display a user-visible notification of the new service. If the app does not call startForeground() within this time limit, the system stops servicing and declares the app ANR.

the problems encountered

But now calling: context.startForegroundService(intent) says ANR, startForegroundService() documentation says to call startForeground() after service starts.

android.app.RemoteServiceException: Context.startForegroundService() did not then call Service.startForeground()

Complete solution steps:

1. add permissions

2. Start the server(start the server within 5 seconds of reference startup)if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {

context.startForegroundService(new Intent(context, MyService.class));

} else {

context.startService(new Intent(context, MyService.class));

}

Then you must call startForeground() in Myservice:

3. startForeground()public static final String CHANNEL_ID_STRING = "service_01" is called in onCreate method in Server;

private Notification notification;

@Override

public void onCreate() {

super.onCreate();

//Adapt 8.0 service

NotificationManager notificationManager = (NotificationManager) MyApp.getInstance().getSystemService(Context.NOTIFICATION_SERVICE);

NotificationChannel mChannel = null;

if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {

mChannel = new NotificationChannel(CHANNEL_ID_STRING, getString(R.string.app_name),

NotificationManager.IMPORTANCE_LOW);

notificationManager.createNotificationChannel(mChannel);

notification = new Notification.Builder(getApplicationContext(), CHANNEL_ID_STRING).build();

startForeground(1, notification);

}

}

4. Call startForeground()@Override again in onStart

public void onStart(Intent intent, int startId) {

super.onStart(intent, startId);

if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {

startForeground(1, notification);

}

}

Note:

Android 8.0 system does not allow background applications to create background services, so you can only use Context.startForegroundService() to start services

After creating a service, the app must call the service's startForeground() within 5 seconds to display a visible notification stating that a service is pending, or the system will stop the service + ANR package from being delivered.

Notification needs to add Channel, system requirements

Why call startForeground() again in onStart? A: This is mainly for services kept alive in the background. If the keepalive mechanism startForegroundService starts service A once during the running of service A, then the onCreate method of service A will not be called, only the onStart method will be called. If you don't put a notification in the onStart method, the system will think you used startForegroundService but didn't notify you within 5 seconds, and stupidly stop the service + ANR package.

The above content is how to open service in Android 8.0. Have you learned knowledge or skills? If you want to learn more skills or enrich your knowledge reserves, please pay attention to the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report