‘壹’ 安卓手机如何发送动态短信
即显短信是直接显示在手机页面上的,不像其它短佶会被屏弊,可以测试。
‘贰’ 安卓手机发短信步骤
发短信的步骤都是一样的,打开短信,输入要发送到的号码,然后在文本框里输入要发送的文字,然后点击发送。
‘叁’ 如何判断android 短信发送是否成功
如何判断android 短信发送(sendTextMessage)是否成功
//短信发送API说明
[java] view plainprint?
SmsManager smsManager = SmsManager.getDefault();
smsManager.sendTextMessage(String destinationAddress, String scAddress, String text, PendingIntent sentIntent, PendingIntent deliveryIntent);
/**
* 参数说明
* destinationAddress:收信人的手机号码
* scAddress:发信人的手机号码
* text:发送信息的内容
* sentIntent:发送是否成功的回执,用于监听短信是否发送成功。
* DeliveryIntent:接收是否成功的回执,用于监听短信对方是否接收成功。
*/
‘肆’ 怎么判断android 短信发送是否成功
若使用的是vivo手机,未发送成功的短信,会显示红色感叹号,已发送成功的短信则不显示感叹号,还可以进入设置--应用与权限--系统应用设置--信息--打开短彩信送达报告,开启后已送达的短信前面显示箭头。
‘伍’ android 发送长短信怎么实现
源码SmsManager类里有个方法可以用来发送长短信,代码如下:
public void sendMultipartTextMessage(
String destinationAddress, String scAddress, ArrayList<String> parts,
ArrayList<PendingIntent> sentIntents, ArrayList<PendingIntent> deliveryIntents) {
if (TextUtils.isEmpty(destinationAddress)) {
throw new IllegalArgumentException("Invalid destinationAddress");
}
if (parts == null || parts.size() < 1) {
throw new IllegalArgumentException("Invalid message body");
}
if (parts.size() > 1) {
try {
ISms iccISms = ISms.Stub.asInterface(ServiceManager.getService("isms"));
if (iccISms != null) {
iccISms.sendMultipartText(destinationAddress, scAddress, parts,
sentIntents, deliveryIntents);
}
} catch (RemoteException ex) {
// ignore it
}
} else {
PendingIntent sentIntent = null;
PendingIntent deliveryIntent = null;
if (sentIntents != null && sentIntents.size() > 0) {
sentIntent = sentIntents.get(0);
}
if (deliveryIntents != null && deliveryIntents.size() > 0) {
deliveryIntent = deliveryIntents.get(0);
}
sendTextMessage(destinationAddress, scAddress, parts.get(0),
sentIntent, deliveryIntent);
}
}
‘陆’ 怎么给android 加入发送免费短信功能
首先,应该在程序清单文件AndroidManifest.xml中加入发短信的权限
<uses-permission android:name="android.permission.SEND_SMS"/>
包括两个TextView组件,两个EditText组件,一个Button组件,在主程序为发送按钮增加单击事件
private EditText txt_num;
private EditText txt_content;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
txt_num= (EditText) this.findViewById(R.id.txt_num);
txt_content=(EditText) this.findViewById(R.id.txt_content);
Button btn_send = (Button) this.findViewById(R.id.btn_send);
btn_send.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
String str_num = txt_num.getText().toString();//得到电话号码
String str_content = txt_content.getText().toString();//得到短信内容
SmsManager manager_sms = SmsManager.getDefault();//得到短信管理器
//由于短信可能较长,故将短信拆分
ArrayList<String> texts = smsManager.divideMessage(str_content);
for(String text : texts){
smsManager.sendTextMessage(str_num, null, text, null, null);//分别发送每一条短信
}
Toast.makeText(SMSActivity.this, "发送成功!", Toast.LENGTH_LONG).show();//提示成功
}
});
}
至此,发送短信功能介绍完毕
‘柒’ android系统默认的发送短信功能可否返回一个发送结果
有个概念要搞清楚,短信回执不是指短信发送成功,短信发送成功只是表示短信服务中心收到了你发的短信,并且给你返回一个消息确认发送成功了。在应用程序调用RIL层接口sendSMS时,所传的最后一个参数是Message对象,在短信发送完成之后,这个message对象会被回传,发送是否成功就在message里面记录了
‘捌’ Android开发中如何调用发短信功能 详细�0�3
首先,应该在程序清单文件AndroidManifest.xml 中加入发短信的权限图 1图1 为发短信的简要界面
包括两个TextView 组件,两个EditText 组件,一个Button 组件,在主程序为发送
按钮增加单击事件
private EditText txt_num;
private EditText txt_content;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
txt_num= (EditText) this.findViewById(R.id.txt_num);
txt_content=(EditText) this.findViewById(R.id.txt_content);
Button btn_send = (Button) this.findViewById(R.id.btn_send);
btn_send.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
String str_num = txt_num.getText().toString();//得到电话号码
String str_content = txt_content.getText().toString();//得到短信内容
SmsManager manager_sms = SmsManager.getDefault();//得到短信管理器
//由于短信可能较长,故将短信拆分ArrayListtexts =smsManager.divideMessage(str_content);
for(String text : texts){
smsManager.sendTextMessage(str_num, null, text, null, null);//分别发送每一条短信}Toast.makeText(SMSActivity.this, "发送成功!", Toast.LENGTH_LONG).show();//提示成功}});}
至此,发送短信功能介绍完毕
‘玖’ 安卓手机有没有定时自动发短信的软件
以红米note手机为例,手机自带有定时自动发送短信功能,方法如下:
1、打开手机桌面的短信app。