I want to run a method CippaLippa() in the GmailService class when I receive an email in Gmail client.

I've a receiver and a service in AndroidManifest...

    <receiver
        android:name="com.myapp.receiver.GmailReceiver">
        <intent-filter>
            <action
                android:name="android.intent.action.BOOT_COMPLETED" />
        </intent-filter>
    </receiver>

    <service
        android:name="com.myapp.service.GmailService"
        android:label="@string/app_name" />

and these classes...

public class GmailReceiver extends BroadcastReceiver {
    @Override
    public void onReceive(final Context context, final Intent intent) {


        final SharedPreferences preferences = context.getSharedPreferences("myapp.prefs", 0);

        context.startService(new Intent(context, GmailService.class));
    }
}


public class GmailService extends Service { .. etc...}

My question: everything works right for some hours and when I receive a notification from Gmail, the CippaLippa() method fires... then, after some hours, when I receive a gmail notification, the CippaLippa() method fires no more.

Maybe, there is a way to tell GmailService class to "stay alive" and continue monitoring Gmail events? I think this is not due to Android OS that kills unused classes, because that is a background service and not an Activity. I've no clue.

link|improve this question

58% accept rate
feedback

4 Answers

up vote 1 down vote accepted

The following code will start the alarm manager immediately (fire the PendingIntent) and run the task every 60 seconds.

    Intent logReader = new Intent();
    logReader.setClassName("com.foo.Test", "com.foo.Test.MyServiceClass");
    logReaderPI = PendingIntent.getService(context, 0, logReader, 0);
    long firstTime = SystemClock.elapsedRealtime();
    AlarmManager aMgr =  (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
    aMgr.setRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP, firstTime, 60 * 1000, logReaderPI);
link|improve this answer
feedback

Have a look at START_STICKY. I'm not sure if this will entirely do the trick, but it may help keep your service going.

link|improve this answer
I read on the web that this do the trick, theoretically... But, in practice I read that someone, using this way, after that Android killed his service killed to free memory, the service reloaded... BUT AFTER 6 HOURS!! – Geltrude Apr 5 '11 at 7:59
feedback

You're right about the system killing the service. I've had the same problem with a service associated with a widget. I solved it by making it refresh every 30 minutes or so.

So if you schedule some event once in a while to wake up your service, it should stay up and running.

There might be a better solution though.

link|improve this answer
Do you suggest me to use a AlarmManager for firing my service? I'm a newbie... Do you have an example? :-) – Geltrude Apr 5 '11 at 8:03
feedback

Also the following code will start the alarm manager and run the task every 60 seconds, but I don't know the difference between this and Advantej code:

    Intent myIntent = new Intent(context, GmailService.class);

    pendingIntent = PendingIntent.getService(context, 0, myIntent, 0);

    AlarmManager alarmManager = (AlarmManager)context.getSystemService(Context.ALARM_SERVICE);

    Calendar calendar = Calendar.getInstance();
    calendar.setTimeInMillis(System.currentTimeMillis());
    calendar.add(Calendar.MINUTE, 1);
    alarmManager.set(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), pendingIntent);

Someone know the difference?

link|improve this answer
Are you sure that the alarm will repeat ? I think the set() function is to set a one time alarm. – advantej Apr 7 '11 at 18:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.