需要有关从Android设备发送短信的帮助

时间:2010-10-20 18:42:22

标签: android

朋友的    任何人都提供一些示例代码来从Android设备发送短信。

提前致谢。

1 个答案:

答案 0 :(得分:1)

public void sendAText(String phonenumber){
    Intent intent = new Intent(Intent.ACTION_VIEW);
    intent.putExtra("address", phonenumber);
    intent.setType("vnd.android-dir/mms-sms");
    intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    context.startActivity(intent);
}