朋友的 任何人都提供一些示例代码来从Android设备发送短信。
提前致谢。
答案 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);
}