Tag archives for Intent
Create and Start a Background Service in Android
In Android applications, like in all mobile applications, responsiveness is often the key to offer great user experience. It’s essential to avoid blocking user interface. In some cases, you will need to process long-running operations. To void affecting user interface’s responsiveness, you will need to use background service. Deriving from IntentService class, a background service is a straightforward structure for…
How to send an Email in Android ?
Last week, I shown you how to send an Email in Android thanks to JavaMail API by using GMail SMTP. This week, you're going to learn how to send an Email in Android by using Intent and so applications installed on the Android OS. Code snippet is very simple compared to solution using JavaMail API : String to = "To";…