blob: 7691e644843f0bb6264f452a9338e8a19b58dc74 [file] [log] [blame]
Dianne Hackbornd4c4b762011-10-27 12:58:16 -07001/*
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(R.drawable.stat_happy, null,
30 System.currentTimeMillis());
31 status.flags |= Notification.FLAG_ONGOING_EVENT;
32 status.setLatestEventInfo(this, "Scheduler Test running",
33 "Scheduler Test running", PendingIntent.getActivity(this, 0,
34 new Intent(this, FrameworkPerfActivity.class)
35 .setAction(Intent.ACTION_MAIN)
36 .addCategory(Intent.CATEGORY_LAUNCHER)
37 .addFlags(Intent.FLAG_ACTIVITY_NEW_TASK), 0));
38 startForeground(1, status);
39 return START_STICKY;
40 }
41
42 @Override
43 public IBinder onBind(Intent intent) {
44 // TODO Auto-generated method stub
45 return null;
46 }
47
48}