5
Birden kişiye birden mesaj göndermek rapor ve her bir kişi kullanımı için i öğrenmek her mesaj için raporu teslim etmek istiyorumAndroid SmsManger Teslimat
private void sendSMS(String first, String last, String id, String phoneNumber)
{
try {
String message;
message = insertName(first, last);
if (message.equals(null) || message.equals("")) message = "\n";
String SENT = "SMS_SENT";
String DELIVERED = "SMS_DELIVERED";
PendingIntent sentPI = PendingIntent.getBroadcast(this, 0,
new Intent(SENT), 0);
PendingIntent deliveredPI = PendingIntent.getBroadcast(this, 0,
new Intent(DELIVERED), 0);
//---when the SMS has been sent---
registerReceiver(new BroadcastReceiver()
{
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));
//---when the SMS has been delivered---
registerReceiver(new BroadcastReceiver()
{
@Override
public void onReceive(Context arg0, Intent arg1)
{
switch (getResultCode())
{
case Activity.RESULT_OK:
Toast.makeText(getBaseContext(), "SMS delivered",
Toast.LENGTH_SHORT).show();
break;
case Activity.RESULT_CANCELED:
Toast.makeText(getBaseContext(), "SMS not delivered",
Toast.LENGTH_SHORT).show();
break;
}
}
}, new IntentFilter(DELIVERED));
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(phoneNumber, null, message, sentPI, deliveredPI);
kod ardından numara veya yayın mesajının herhangi bir şey almak nasıl Teslim raporu anlamak için bu iletişim?
Evet, birbirlerinden niyetleri tanımlayabildiğiniz sürece bir şey ayarlayabilirsiniz. – Tarun
'id' parametreler içinde String olarak tanımlanmıştır; Bu 'putExtra()' 'deliveryIntent' için bir dize ekler. O zaman neden 'onReceive' içinde 'getStringExtra()' yerine 'getLongExtra()' kullanıyorsunuz? – 1111161171159459134
@ MMS ile ilgili herhangi bir fikriniz mi var? – Gattsu