B4A Question PhoneSms - lemonisdead (first post) Jan 12, 2015 (1 reaction) Hello,
PhoneSms allows you to send the SMS but if required and by using Send2, you can request the ReceiveSentNotification event. Then you could increase a variable to count the number of Sms sent. B4A Question FLAG_IMMUTABLE or FLAG_MUTABLE - agraham (first post) Sep 14, 2022 Looks like Phone.PhoneSMS.Send2 (which is called by Send) uses a PendingIntent and will need the Phone library updated to fix this. B4A Question event: a sms is sent - how to trap the event? - OliverA (first post) Jan 10, 2024 (2 reactions) Looking at the documentation of PhoneSMS.Send2
https://www.b4x..png Send2 (PhoneNumber As String, Text As String, ReceiveSentNotification As Boolean, ReceiveDeliveredNotification As Boolean)
Sends an Sms message. Note that this method actually sends the message (unlike most other methods that
crea B4A Question Sending SMS by PhoneSMS incl. capturing of 'Message Sent' and 'SMS Received' events etc. - DonManfred (first post) Apr 19, 2021 (4 reactions) Only the default SMS App on your Device is allowed to Send SMS.
I earlier Androids it was possible B4A Question Send SMS from B4A code - Erel (first post) May 18, 2020 (4 reactions) If it is not a Google Play app then you can use PhoneSms.Send. Just request the permission at runtime. Italian SMS senza conferma di recapito - AlpVir (first post) Nov 10, 2017 (2 reactions) Risolto !
Ho mantenuto le due sempici istruzioni
Dim Sms1 As PhoneSms
Sms1.Send2(numtel,txtSMS, False,False)
ed ho eliminato altre sub quali
SendSms(PhoneNumber As String, Text As String)
SendLargeSms(Destination As String, Message As String)
PE_SmsDelivered (PhoneNumber As String, Intent As In B4A Question Need example of PhoneSms.Send2 using SmsDelivered and SmsSentStatus - Erel (first post) Apr 21, 2015 (2 reactions) There is an example of using PhoneEvents here: https://www.b4x.-library-update-v1-34.7829/#content
You just need to add the relevant events.
There are many examples based on AsyncStreams: https://www.b4x./?query=asyncstreams&page=1&prefix=0 B4A Question PhoneSMS + Nexus 7 - Beja Mar 11, 2015 Hi,
PhoneSMS is no longer working on Nexus 7. . anyone had same experience and solved it?
Thanks in advance B4A Library PhoneLibrary: Updated PhoneSms.Send - Sorin Pohontu Apr 02, 2015 (6 reactions) Usage with message as a Map:
Sub SendSMS(Message As Map)
Dim Extra As Map
' Extra Data
Extra.Initialize
Extra.Put("message_id", "xxxx")
NativeMe.RunMethod("Send3", Array(Message.Get("to"), Message.Get("message"), Extra, true, true))
End Sub
Now, In SmsSentStatus / SmsDelivered, B4A Question MessageComposer for Android Phone libray - eurojam (first post) Sep 22, 2015 (1 reaction) you can use phonesms (https://www.b4x.com/android/help/phone.html#phonesms). you need to make an edittextfield, where the user enters the text and you can use contacts (https://www.b4x.com/android/help/phone.html#contacts) to geht the phone number from the stored contacts. What do you need more? I t Page: 1 2 3 4 5 6 7 Powered by ColBERT |