Hi all,
Looking through tutorials, I can easily read stored B4A SMS messages. For instance,
Now, for a given SMS, I would like to get the raw SMS info ( as getPDU() method in SMSMessageClass does). Can I obtain it using reflection or JavaObjects from a B4A SMS object, or do I need to use some other approach?
In other words, is the B4A SMS object directly related to Android SMSMessage so that I can access it and its methods?
Looking through tutorials, I can easily read stored B4A SMS messages. For instance,
B4X:
Dim SMSMsgs As SmsMessages
Dim SMSList As List
SMSList=SMSMsgs.GetAll
For each mySMS as SMS in SMSList
....
Next
Now, for a given SMS, I would like to get the raw SMS info ( as getPDU() method in SMSMessageClass does). Can I obtain it using reflection or JavaObjects from a B4A SMS object, or do I need to use some other approach?
In other words, is the B4A SMS object directly related to Android SMSMessage so that I can access it and its methods?