I want to send stored RMS data using an HTTP connection when the application is in idle mode.

So if the user is not doing anything with the application at that time, my thread will invoke and send RMS data to server.

For this requirement, how do I how find out if the application in active mode or idle mode?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You could wait for the backlight to go off, if that's enough of an indication of whether the application is active.

Implement the SystemListener2 interface, there's a method backlightStateChange() that will be invoked after the object is registered with Application.addSystemListener

link|improve this answer
thanks for your reply i want to implement this in j2me for nokia e-72 and what the solution you suggested is perfect for blackberry. which api's i can use for j2me?? – Mihir Feb 8 '11 at 4:54
@Mihir Why did you add the BlackBerry tag? – Michael Donohue Feb 8 '11 at 6:04
because i want to implement it on both j2me mobiles and blackberry so if code are standard j2me code then that will work on both mobiles – Mihir Feb 8 '11 at 6:10
@Mihir I do BlackBerry development, so can't really comment on the more general j2me API. – Michael Donohue Feb 8 '11 at 6:11
its ok and thanks for your kind help. – Mihir Feb 8 '11 at 6:13
feedback

I do not see any smarter solution than using Displayable.setCommandListener(CommandListener l).

The command listener should use Timer. When a certain timeout (let's say 60 seconds) is expired, the timer task should run and trigger sending your data. I think that if you have access to the midlet's code, this solution is not so bad.

link|improve this answer
can you explain briefly or give some example so that i can understand. – Mihir Apr 13 '11 at 13:18
feedback

Your Answer

 
or
required, but never shown

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