使用短信管理器它不适用于csv列表;除了循环和发送多个文本以发送给多个收件人之外还有什么方法吗?
或者这是设计上的非垃圾邮件功能吗?
答案 0 :(得分:11)
Intent smsIntent = new Intent(Intent.ACTION_SENDTO,Uri.parse("smsto:5551212;5551212"));
smsIntent.putExtra("sms_body", "sms message goes here");
startActivity(smsIntent);
将一个以分号分隔的电话号码列表添加到“smsto:”作为Intent构造函数中的URI。
答案 1 :(得分:8)
在SAMSUNG设备中你必须用','来分隔电话号码,而其他设备接受';'。所以你的代码应该是这样的: -
String separator = "; ";
if(android.os.Build.MANUFACTURER.equalsIgnoreCase("samsung")){
separator = ", ";
}
try {
Intent sendIntent = new Intent(Intent.ACTION_VIEW);
sendIntent.putExtra("address", "55555"+seperator+"66666");
sendIntent.putExtra("sms_body", "Here is My text");
sendIntent.setType("vnd.android-dir/mms-sms");
startActivity(sendIntent);
} catch (Exception e) {
Toast.makeText(getApplicationContext(),
"SMS faild, please try again later!",
Toast.LENGTH_LONG).show();
e.printStackTrace();
}
答案 2 :(得分:1)
Intent smsIntent = new Intent(Intent.ACTION_SENDTO,Uri.parse("smsto:5551212;5551212"));
smsIntent.putExtra("sms_body", "sms message goes here");
startActivity(smsIntent);
此代码适用于所有Android设备,但它不适用于三星的设备。所以将昏迷的分隔电话号码列表添加到“smsto:作为意图中的URI。 感谢