Androidサービスはバックグラウンドに常駐し、クリーンアップされない
970 ワード
会社にはプロジェクトがあり、バックグラウンドでサービスを実行する必要があります.システムをクリアするのは容易ではありません.通知欄にサービスが実行されていることを表示することもできます.
主なサービスコードは以下の通りです.主にサービスonCreateの場合、notificationを使用して通知バーに常駐します.
主なサービスコードは以下の通りです.主にサービスonCreateの場合、notificationを使用して通知バーに常駐します.
@Override
public void onCreate() {
super.onCreate();
foregroundRun();
}
/**
* , ( )
*/
private void foregroundRun() {
PendingIntent p_intent = PendingIntent.getActivity(this, 0,
new Intent(this, MainActivity.class), 0);
Notification notification = new NotificationCompat.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher)
.setTicker("ina-ina")
.setContentTitle("Ina_Service")
.setContentText("Service is Running!")
.setContentIntent(p_intent)
.build();
startForeground(0x1989, notification); // notification ID: 0x1982, you can name it as you will.
}