final void shareBySMS(String contents) { sendSMSFromUri("smsto:", contents); }
final void sendSMS(String phoneNumber, String body) { sendSMSFromUri("smsto:" + phoneNumber, body); }
final void shareBySMS(String contents) { sendSMSFromUri( "smsto:", activity.getString(R.string.msg_share_subject_line) + ":\n" + contents); }