<TextView
android:id="@+id/tv_email"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/tv_display_name_details"
android:layout_alignStart="@id/tv_display_name_details"
android:layout_below="@id/tv_display_name_details"
android:text="@{
profile.userProfile.email}"
android:clickable="true"
android:onClick="@{profile.sendEmail(
profile.userProfile.email)}"/>
public void sendEmail(View v, String email){
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[] {email});
Intent mailer = Intent.createChooser(intent, null);
//startActivity(intent);
}