sms

Android: Is there any way to listen outgoing sms?

匆匆过客 提交于 2019-12-18 03:51:09
问题 I know that an incoming sms can be easily intercepted using a broadcast reciever. But I did not see any way to intercept an outgoing sms. How can this be done? But there is a way to do this.. Because many third party applications read both incoming and outgoing sms. 回答1: You will have to do something like this: Cache all messages's hash code on the phone Register an content observer for content://sms In onChange method of observer, enumrate all messages to check if it is in cache, if not, the

Where can I get to download Java comm api?

夙愿已清 提交于 2019-12-18 03:43:12
问题 I want to write some programs using Java comm api. I am not able to find site/page from which I can download this API. Can anyone please tell me where can I get this API? Basically I want to send SMS to mobile from PC. Mobile will connect to PC through USB cable. I would also like to know what are the possible ways to send SMS to mobile? (I am looking for option which wont incur me money) Thanks in advance ! EDIT 1 I am not allowed to use third party APIs. It seems that Java comm API is dead

Where can I get to download Java comm api?

白昼怎懂夜的黑 提交于 2019-12-18 03:43:04
问题 I want to write some programs using Java comm api. I am not able to find site/page from which I can download this API. Can anyone please tell me where can I get this API? Basically I want to send SMS to mobile from PC. Mobile will connect to PC through USB cable. I would also like to know what are the possible ways to send SMS to mobile? (I am looking for option which wont incur me money) Thanks in advance ! EDIT 1 I am not allowed to use third party APIs. It seems that Java comm API is dead

SMS notifications in iOS6

半城伤御伤魂 提交于 2019-12-18 03:42:20
问题 I found SMS notifications are not supported in iPhone ,but I found a video on Pebble Smart watch which sends SMS notification and iMessage notification . Here are the video and the application links. http://www.razorianfly.com/2012/12/07/pebble-officially-announces-sms-and-imessage-support-for-iphone-video/ http://www.iphoneincanada.ca/iphone-news/pebble-watch-now-supports-iphone-sms-and-imessage-video/ https://itunes.apple.com/us/app/pebble-smartwatch/id592012721?mt=8 I also found on the web

WP 8.1 Runtime code to make phone call, send SMS & send Email (not the Silverlight 8.1)

浪子不回头ぞ 提交于 2019-12-18 03:11:11
问题 I'm writing an app which will make a phone call, send sms or email just like the People app in wp 8.1 . So far I've found a link form msdn which said "Applies to: Windows Phone 8 and Windows Phone Silverlight 8.1". So here the code:from this link using Microsoft.Phone.Tasks; private void TextBlock_Tapped_Call(object sender, TappedRoutedEventArgs e) { PhoneCallTask phoneCallTask = new PhoneCallTask(); phoneCallTask.PhoneNumber = "2065550123"; phoneCallTask.DisplayName = "Gage"; phoneCallTask

WP 8.1 Runtime code to make phone call, send SMS & send Email (not the Silverlight 8.1)

橙三吉。 提交于 2019-12-18 03:11:06
问题 I'm writing an app which will make a phone call, send sms or email just like the People app in wp 8.1 . So far I've found a link form msdn which said "Applies to: Windows Phone 8 and Windows Phone Silverlight 8.1". So here the code:from this link using Microsoft.Phone.Tasks; private void TextBlock_Tapped_Call(object sender, TappedRoutedEventArgs e) { PhoneCallTask phoneCallTask = new PhoneCallTask(); phoneCallTask.PhoneNumber = "2065550123"; phoneCallTask.DisplayName = "Gage"; phoneCallTask

Execute AT commands to send sms in php

我怕爱的太早我们不能终老 提交于 2019-12-18 02:54:15
问题 I am trying to execute AT commands from PHP. I tried exec() and shell_exec() Please don't suggest third party SMS gateway my client doesn't want to disclose his private information and wants to send SMS from his own server. I have a GSM modem attach to a serial port which I can access through "putty" like in fig And I can enter AT commands to send SMS like in fig below. I want to run those AT commands through PHP. 回答1: Hi I am sending sms using php class on windows 8 by this php code. require

SMS/Text message sending via PHP

十年热恋 提交于 2019-12-18 02:49:37
问题 I'm interested in knowing if it would be at all feasible to be able to send text messages via PHP. The main purpose of which would be to send a single message to a group of people - 10+ - with updates regarding news and such. Preferably the solution should be free, though it is not a necessity in any way. Thanks to all in advance. 回答1: I've done this with PHP, and it works very well. Text messages are nothing more than an email, usually with the receiver's 10 digit number @address.com. If you

Using SMS to verify a device's phone number

折月煮酒 提交于 2019-12-17 23:29:15
问题 I am trying to verify the phone number of an Android device by having the device send an SMS to itself, and automatically checking if the SMS has been received. How can I do this? 回答1: To begin, this will require two permissions; one to send SMS messages, and one to receive them. The following needs to be in your AndroidManifest.xml, between the <manifest> tags, but outside of the <application> tags. <uses-permission android:name="android.permission.SEND_SMS" /> <uses-permission android:name=

Android SMS Message delivery report intent

纵饮孤独 提交于 2019-12-17 22:51:12
问题 Android isn't firing the delivery intent when sending a text message. I'm testing this on Android 2.2 on the HTC EVO 4G. This is the current code. I'm seeing "SMS sent intent received." in the logs, but not "SMS delivered intent received.". // Constants String SENT_ACTION = "SMS_SENT_ACTION"; String DELIVERED_ACTION = "SMS_DELIVERED_ACTION"; String CELL_NUMBER = "0000000000"; String MESSAGE = "Hello World!"; // SMS sent pending intent PendingIntent sentIntent = PendingIntent.getBroadcast(this