How to Email Send in Android with Animation

Oct 23, 2015
164 Views
Image This is a small attempt to attract users when they are using in app feature to send out an email. The usage of this repo serves the purpose like contacting the support desk, inviting another user over email or any other form of email based features.
How to Animated Email Send in Android, animation in android, animation with email, send email with animation in android

Why to use?

An user having used multiple applications is bored to see the traditional loading indicator, would always prefer to see something new and providing such user experience helps to retain users.

There are cases where users may not like the idea of taking them to email client app(passing an SEND_TO action intent) since the users do not like to promote an app feature from his direct email account.

You should read : Fetch your Gmail Account using Java Mail API

More often users do not return to the origin application that took him to email client app as they become busy reading the other emails - leads to fall in user engagement.

How to Use?

Very simple - Have a button in your activity and click listener to call the following call:
startActivity(new Intent(YourActivity.this,EnvelopeActivity.class));
The above will take the user to email client app for sending out an email. (I suggest not to use this because of last two reasons mentioned in 'Why to use' section.)

Comments
avatar
Please sign in to add comment.