Android SendMultipartTextMessage with pendingIntents with Extra values same for all parts -
i sending multi-part (concatenated) messages through android using xamarin studio , sms.telephony.smsmanager android library.
to send message doing following:
var longmessage = "this cØncatenated message sent through android. should appear single message. it's easy that. has function break message up. took me longer install xamarin did write code , send actual message"; var smsmgr = android.telephony.smsmanager.default; system.collections.generic.ilist<string> parts = smsmgr.dividemessage(longmessage); ilist<pendingintent> pendingintents = new list<pendingintent>(parts.count); (int = 0; < parts.count; i++) { var intent = new intent(deliveryintentaction); intent.putextra("messageparttext", parts[i]); intent.putextra("messagepartid", i.tostring()); pendingintent pi = pendingintent.getbroadcast(this, 0, intent, 0); pendingintents.add(pi); } smsmgr.sendmultiparttextmessage("17057178131",null, parts, pendingintents, null);
i have receiver pending intents looks this:
[broadcastreceiver(enabled = true)] //(exported = true, permission = "//receiver/@android:android.permission.send_sms")] [intentfilter(new[] { deliveryintentaction }, priority = int.maxvalue)] public class smssentreceiver : broadcastreceiver { public override void onreceive(context context, intent intent) { if (intent.getstringextra ("messagepartid") != null) lbl.text += " sent response " + intent.getstringextra ("messagepartid") + system.environment.newline; ...
however, each time onrecieve called, intent.getstringextra("messagepartid") has value of "0" , messageparttext first part, not part number/text belongs message part sent.
can see why may case?
thank you
using pendingintent pi = pendingintent.getbroadcast(this, 0, intent, 0); attempts override existing pendingintent.
to create new intent , have waiting, had change requestcode parameter of getbroadcast.
pendingintent pi = pendingintent.getbroadcast(this, i, intent, 0);
thanks
Comments
Post a Comment