http://androidforums.com – I have the following event handling code for a button click event here: Code: ibtnShare.setOnClickListener(new OnClickListener() { public void onClick(View v){ Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Check this out"); emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, facts[position]); (General)