Java tutorial
//package com.java2s; import android.content.Intent; import android.net.Uri; public class Main { /** * @brief Get the intent to invoke sending sms. * * @par Sync (or) Async: * This is a Synchronous function. * * @param [IN] telNumber Telephone number.\n * * @return * * @author daiping.zhao * @since 1.0.0.0 * @version 1.0.0.0 * @par Prospective Clients: * External Classes */ public static Intent doSendSms(String telNumber) { Uri uri = Uri.parse("smsto:" + telNumber); return new Intent(Intent.ACTION_SENDTO, uri); } }