我有一个程序只需按一下按钮就可以向一组人发送预定义的短信。我有它运作良好,但我遇到的问题是,当它发送消息时,它会弹出每个消息发送2个吐司。代码:
package com.mfd.alerter;
//imports
public class homeScreen extends Activity {
//buttons
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
//vars
// Grab the time
final Date anotherCurDate = new Date();
SimpleDateFormat formatter = new SimpleDateFormat("km");
final String formattedTime = formatter.format(anotherCurDate);
// Contacts
final String[] numbers = getResources().getStringArray(R.array.numbers);
// Start messages. Only 1 is given to shorten post
callStructureFire.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
String msgText = "MFD PAGE OUT:\nStructure Fire\nTimeout:"+formattedTime;
for (int i = 0; i < numbers.length; i++) {
sendSMS(numbers[i], msgText);
}
}
});
//more call types. not important.
}
//---sends a SMS message to another device---
private void sendSMS(String numbers, String message)
{
String SENT = "SMS_SENT";
PendingIntent sentPI = PendingIntent.getBroadcast(this, 0,
new Intent(SENT), 0);
//---when the SMS has been sent---
registerReceiver(new BroadcastReceiver(){
@Override
public void onReceive(Context arg0, Intent arg1) {
switch (getResultCode())
{
case Activity.RESULT_OK:
Toast.makeText(getBaseContext(), "SMS sent",
Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_GENERIC_FAILURE:
Toast.makeText(getBaseContext(), "Generic failure",
Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_NO_SERVICE:
Toast.makeText(getBaseContext(), "No service",
Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_NULL_PDU:
Toast.makeText(getBaseContext(), "Null PDU",
Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_RADIO_OFF:
Toast.makeText(getBaseContext(), "Radio off",
Toast.LENGTH_SHORT).show();
break;
}
}
}, new IntentFilter(SENT));
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(numbers, null, message, sentPI, null);
}
//action bar stuff. not important.
}
更详细:让我说我将文本发送给3个人,将弹出6个Toast消息,说“SMS Sent”。我怎么做到这样才会出现3?
另外,有没有办法可以添加发送邮件的计数器?例如:“消息1/10已发送”,“消息2/10已发送”等?
答案 0 :(得分:1)
我没有真正查看你的代码或问自己为什么会发生这种情况,但这里有一个停止烤面包的技巧:
使用makeToast()创建Toast实例,然后在显示之前调用cancel(),设置文字然后调用show()。这将取消之前的祝酒词。您甚至不会注意到烤面包会显示两次。
这是一个愚蠢的解决方法,但它对我有用; - )
答案 1 :(得分:0)
你不应该只注册一次接收器而不是每次调用sendSMS。 你得到6个带有三个sms消息的Toast,因为你有3个BroadCastReceivers。所以在第一次运行中你会得到1个Toast。在第二次运行中,您将获得2个Toasts(在第一次运行中注册的接收器被调用,而第二次运行中的接收器被调用)。在第三次运行中,所有三个接收器都被调用,因此您可以再获得三个接收器。总而言之 - 6个祝酒词......
所以我想,你必须在你调用sendSMS的for循环之前只注册一个接收者,或者如果你想在sendSMS中注册,那么你必须在方法结束时取消注册。
我希望这有帮助, 干杯!