It’s an example of what Intents are all about in Android, but today was the first time I’ve used the android.content.Intent.ACTION_SEND action to allow users to send emails, post to Twitter or Facebook, send text messages, etc! It couldn’t be any easier, here’s the code: [crayon lang="java"] Intent myIntent = new Intent(android.content.Intent.ACTION_SEND); myIntent.setType(“text/plain”); myIntent.putExtra(Intent.EXTRA_SUBJECT, “My [...]