sms

How programmaticaly replace internal mechanism for SMS sending

旧巷老猫 提交于 2019-12-12 01:35:20
问题 I want to use SMPP for sms sending rather then standard mechanism. Can I programmatically replace mechanism of SMS sending to my own? 回答1: You can create your own Android firmware and attempt to replace the SMS subsystem with one of your choosing. You can write your own SMPP client and distribute it through the Market, presumably (I do not know much about SMPP). You cannot modify the SMS subsystem on an existing phone via an app distributed through the Market, though. 来源: https:/

How to display android sms inbox

﹥>﹥吖頭↗ 提交于 2019-12-12 01:29:33
问题 Notification notifyDetails = new Notification(R.drawable.msg,"message received",System.currentTimeMillis()); PendingIntent myIntent = PendingIntent.getActivity(context, 0, new Intent(Intent.ACTION_VIEW), 0); I am using broadcast receiver to notify for incoming message. i am able to display my own notification in notification bar when message is received. i need when user clicks it it go to Inbox or currently received message. PendingIntent myIntent = PendingIntent.getActivity(context, 0, new

Ozeki Server not receiving SMS messages

拥有回忆 提交于 2019-12-12 01:21:03
问题 I'm trying to get Ozeki to receive SMS messages from my GSM Nokia E63 - it will send messages fine but wont receive them. I am also trying to get a PHP/HTML form to generate messages, but the example on the Ozeki website won't work! <?php if ($submit=="Send") { $url='http://localhost:9333/ozeki?'; $url.="action=sendMessage"; $url.="&login=admin"; $url.="&password=abc123"; $url.="&recepient=".urlencode($recepient); $url.="&messageData=".urlencode($message); $url.="&sender=".urlencode($sender);

Android: register application to Send/Compose sms

北城余情 提交于 2019-12-12 01:07:37
问题 How can I register my application so that when I press compose sms button or even send sms my app appears in dialog Complete action using ? I have put that code to Manifest file (note NewMessageActivity sends sms) but it's not working. <activity android:name=".NewMessageActivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <action android:name="android.intent.action.SENDTO"

Android 2.2 Read SMS Inbox messages

本小妞迷上赌 提交于 2019-12-12 00:53:16
问题 I'm able to read SMS Inbox and display all messages. I have two problems. The first one is that the person field is always NULL. This is my query to the "content://sms/inbox". Cursor cursor = context.getContentResolver().query(SMS_INBOX_CONTENT_URI, new String[] { "_id", "thread_id", "address", "person", "date", "body" }, null, null, SORT_ORDER); The person field is always NULL. Is there a way to retrieve the actual display name for this SMS message? Is there a join to another table to

iphone Read incoming SMS message

坚强是说给别人听的谎言 提交于 2019-12-12 00:40:57
问题 I would like to know whether we can read the incoming SMS message in iPhone . If any new SMS message arrives I want to open it through my app . Can you suggest any solution? 回答1: It's not possible in iOS, sorry 回答2: iPhone does not have any API hooks into the SMS stack. There is, however, a sqlite style database that you can read with the information inside. If the phone is jailbroken it can be accessed. 回答3: No, on a non-jailbroken phone, you cannot get any data on SMS messages or phone

Android sms receiver doesnt work

天大地大妈咪最大 提交于 2019-12-12 00:22:41
问题 I've searched a lot on web and on SO I couldn't find an answer to my case or a straightforward tutorial, I was following this my problem is that the constructor doesn't get call nor onReceive(). public class Smsreceiver extends BroadcastReceiver { public Smsreceiver() { Log.v("constructing", "constructing"); } @Override public void onReceive(Context context, Intent intent) { Log.v("received", "received"); Bundle bundle = intent.getExtras(); SmsMessage[] msgs = null; String str = ""; if

How to perform an action in Android when receiving and SMS?

試著忘記壹切 提交于 2019-12-11 23:42:25
问题 Can someone please help me figure out how to perform an action when sms is received, is there a special method for it? Will it automatically be ran in the background? The only thing I know is that I need to use permission RECEIVE_SMS. 回答1: You will need to use a BroadcastReceiver and an IntentFilter . Check them out in the SDK reference. If you register an IntentFilter in the AndroidManifest.xml with your registration of the BroadcastReceiver then it will be picked by your BroadcastReceiver

Send a cellphone SMS text without the use of a third-party service [closed]

穿精又带淫゛_ 提交于 2019-12-11 20:34:38
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 6 years ago . Is it possible using a Windows Server, .NET, C# or PHP to send a SMS text message to q customer's cell phone without depending upon a third-party service (excluding an API provided by a phone company). My require is to use SMS text messaging to automate authentication when

SMS receiver didn't work

坚强是说给别人听的谎言 提交于 2019-12-11 19:59:30
问题 i am new with android SMS and I am trying to study it. So i am trying to make an android app that always works on the background, and when I receive sms with the content of "hello"(somebody sending "hello" to my phone by SMS) a music will play. I searched all over the internet, and I built a project that worked on the AVD, but when I tested it on my phone it didn't work: import info.kfsoft.android.R.raw; import android.app.Notification; import android.app.NotificationManager; import android