Call vs. SMS

boten

Active Member
Licensed User
Longtime User
B4X:
Dim c As PhoneCalls
Dim s As PhoneSms
StartActivity(c.Call("0123456789"))
s.Send("0123456789","hello there")

the phone call is shown later on the phone's call log, but there's no sign of the SMS sent in "messaging" application, why?
 

boten

Active Member
Licensed User
Longtime User
thx. Except for the event (SmsSentStatus) and the monthly charge from the cellphone company :( it seems that SMS sent this way vanish into thin air.
 
Upvote 0

csgoh

Member
Licensed User
Longtime User
I think that the Sms messages are not tracked by Android like the phone calls. The log you see is private for the messaging application.

Hi Erel, are you sure this is the case? I use both "Messaging" and "Handcent SMS" apps. Anything that I sent via Handcent is appearing in Messaging and anything that I sent via Messaging is appearing in Handcent.

I am building an SMS app, if the app send an outgoing SMS and it is not logged in Messaging or any other messaging program, i think it will create users confusion.

Any workaround to "broadcast" the delivered sms within android phone?

:sign0144::sign0085:
 
Upvote 0
Top