1/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.frameworkperf;
18
19import android.app.Notification;
20import android.app.PendingIntent;
21import android.app.Service;
22import android.content.Intent;
23import android.os.IBinder;
24
25public class SchedulerService extends Service {
26
27    @Override
28    public int onStartCommand(Intent intent, int flags, int startId) {
29        Notification status = new Notification.Builder(this)
30                .setSmallIcon(R.drawable.stat_happy)
31                .setWhen(System.currentTimeMillis())
32                .setContentTitle("Scheduler Test running")
33                .setContentText("Scheduler Test running")
34                .setContentIntent(PendingIntent.getActivity(this, 0,
35                        new Intent(this, FrameworkPerfActivity.class)
36                                .setAction(Intent.ACTION_MAIN)
37                                .addCategory(Intent.CATEGORY_LAUNCHER)
38                                .addFlags(Intent.FLAG_ACTIVITY_NEW_TASK), 0))
39                .setOngoing(true)
40                .build();
41        startForeground(1, status);
42        return START_STICKY;
43    }
44
45    @Override
46    public IBinder onBind(Intent intent) {
47        // TODO Auto-generated method stub
48        return null;
49    }
50
51}
52