I'm brand new to the android developer world. I'm working through a few books and some example programs to get my bearings. I have questions about an android app that I'd like to write.

My school has an open wifi network that is secured by a gatekeeper page that requires you to login with a username/password. Once a device is connected to the routers, any http request is redirected to the router-based login page. I want to automate this handshake.

I've so far figured that I'll rely on the android.net.wifi.ScanResult class. I'll want the app to check if the SSID matches the school's network, and if so, open a page to some user-specified home page where it'll be redirected to the sign-on page, enter the user info to complete the connection, and then quietly stop working.

I want to do this because, particularly with mobile devices set to have their wifi connection sleep on screen turn off, looking up simple things during class is infuriating. Either you turn off wifi and rely on a 3G connection or you have to type in your user/pass combo each time you want to look up a term.

What I need help with is this: I don't know how often the wifi scans. I don't want to write an app that monitors the connection at all times. I want it to check the wifi it's connected to when the user unlocks the screen. If it's the schools SSID I want the program to run and connect and then turn off. How do I achieve this simple login without unintentionally creating a battery hog that's doing way more than it needs to?

Thanks in advance and sorry for the verbosity. I'll get more concise when I understand better what I'm doing.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.