[android-developers] Re: Send SMS every x minutes

2012-11-29 Thread Brian Hoffmann
You are calling Thread.sleep() in the onClickHandler of your send button. Besides that, you're also trying to do all the repeated message sending in that handler. This is most likely to fail because this way you are blocking the UI thread. You shouldn't do any long running actions in the main

[android-developers] Re: Send SMS on specific application port

2011-12-11 Thread skink
smoogli wrote: Hi, Sending an SMS is straightforward. However, I can't find a way to send an SMS on a specific application port. 1. There is a way to send standard SMS in Android 2. There is a way to send Binary SMS in Android. 3. There is a way to send SMS to specific port, in JavaME

[android-developers] Re: Send SMS on specific application port

2011-12-11 Thread smoogli
Correcting my question: 1. There is a way to send Standard SMS in Android 2. There is a way to send Binary SMS in Android i.e., using SmsManager.sendDataMessage(...) 3. There is a way to send SMS to specific port, in JavaME i.e., String smsUrl = sms:// + to + : + 99112; Any idea on how to send

[android-developers] Re: Send SMS on specific application port

2011-12-11 Thread smoogli
Hi pskink, thanks for your answer. yes, tried SmSManager.sendData(...short destinationPort...). But what I need is a SmSManager.sendTextMessage(... short PORT...). any idea? thanks again -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: send SMS from adb without using mobilenetwork

2011-10-16 Thread Ali Chousein
Check the information at http://developer.android.com/guide/developing/devices/emulator.html#sms You can sent SMS messages to an emulator at least. I have never tried it, but maybe you can also send SMS messages to a phone by specifying the device ID. But as I said, I'm not sure if you can send

Re: [android-developers] Re: Send SMS

2011-06-06 Thread SULIMAN khan
i m busy On Fri, Jun 3, 2011 at 7:13 PM, Muhammad Umair umai...@gmail.com wrote: No response so far. On 2 Jun 2011 22:44, Muhammad Umair umai...@gmail.com wrote: I have created a application of android who can able to send sms . that was great. One problem i am facing that if i want to

Re: [android-developers] Re: Send SMS

2011-06-06 Thread Chi Kit Leung
you can create async intent to send sms . On Sat, Jun 4, 2011 at 5:28 PM, SULIMAN khan sulimankhan.mobilink...@gmail.com wrote: i m busy On Fri, Jun 3, 2011 at 7:13 PM, Muhammad Umair umai...@gmail.com wrote: No response so far. On 2 Jun 2011 22:44, Muhammad Umair umai...@gmail.com

Re: [android-developers] Re: Send SMS

2011-06-04 Thread Muhammad Umair
No response so far. On 2 Jun 2011 22:44, Muhammad Umair umai...@gmail.com wrote: I have created a application of android who can able to send sms . that was great. One problem i am facing that if i want to send 2 sms on 1 number then when i clicked on Send Sms button a new instance of that

Re: [android-developers] Re: Send SMS

2011-06-03 Thread Muhammad Umair
I have created a application of android who can able to send sms . that was great. One problem i am facing that if i want to send 2 sms on 1 number then when i clicked on Send Sms button a new instance of that application will automatically open. if i want to send 4 same sms on 1 number then 4 new

[android-developers] Re: Send SMS

2011-06-01 Thread blacksheep
Maybe you will like this one: http://www.appbrain.com/app/cmdlinesms-le/net.lulli.android.cmdlinesms Regards, Paolo Lulli On May 30, 1:23 pm, Mark Murphy mmur...@commonsware.com wrote: On Sun, May 29, 2011 at 1:23 AM, Muhammad Umair umai...@gmail.com wrote: Hi guys, I am new to this

[android-developers] Re: Send SMS from Widget

2010-11-16 Thread Rohith Nandakumar
Thankyou, but that wasn't very nice. I want to the send the sms from a homescreen widget. On Nov 16, 2:00 pm, Marcin Orlowski webnet.andr...@gmail.com wrote: On 16 November 2010 07:58, Rohith Nandakumar rohith.nandaku...@gmail.com wrote: Hi. I want to send a preset SMS message when I click

Re: [android-developers] Re: Send SMS from Widget

2010-11-16 Thread Mark Murphy
On Tue, Nov 16, 2010 at 6:27 AM, Rohith Nandakumar rohith.nandaku...@gmail.com wrote: Thankyou, but that wasn't very nice. I want to the send the sms from a homescreen widget. Have your AppWidgetProvider use SmsManager to send the SMS. Or, have your AppWidgetProvider use an ACTION_SENDTO Intent

Re: [android-developers] Re: Send SMS from Widget

2010-11-16 Thread Marcin Orlowski
On 16 November 2010 12:27, Rohith Nandakumar rohith.nandaku...@gmail.com wrote: Thankyou, but that wasn't very nice. I want to the send the sms from a homescreen widget. Aside from LMGTFY not working fully correct I got a feeling you didn't try what I suggested, right? I wonder why you expect

[android-developers] Re: Send SMS in Android

2010-05-10 Thread Nithin
My wild guess is you are clicking on the button more than once... put the send() inside a if loop and set the boolean to false after calling send() Nithin On May 10, 10:53 am, mike hasitharand...@gmail.com wrote: hi guys, i have a application which send sms. but i found that the application

[android-developers] Re: Send SMS in Android

2010-05-10 Thread mike
hi Nithin, i also guess the same thing because of that what i did was i create a very simple application. it also sends 2 sms's. this is really frustration. this the application package com.sms; import android.app.Activity; import android.os.Bundle; import android.telephony.SmsManager; import

Re: [android-developers] Re: Send SMS in Android

2010-05-10 Thread Mani Android
Hi Randika I'll try to solve ur issue. Add my id in the chat. Regards Mani On Mon, May 10, 2010 at 2:56 PM, mike hasitharand...@gmail.com wrote: hi Nithin, i also guess the same thing because of that what i did was i create a very simple application. it also sends 2 sms's. this is really

[android-developers] Re: Send SMS in Android

2010-05-10 Thread mike
hi Nithin, i also guess the same thing because of that what i did was i create a very simple application. it also sends 2 sms's. this is really frustration. this the application package com.sms; import android.app.Activity; import android.os.Bundle; import android.telephony.SmsManager; import

[android-developers] Re: Send SMS fails on CDMA Device.

2010-04-27 Thread Jon
The CDMA implementation of sendDataMessage is incorrect and doesn't work. See http://code.google.com/p/android/issues/detail?id=7319 -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: send sms with a phone number in parameter

2009-12-17 Thread Abhi
Hi, You could try this: Intent m_intent = new Intent(Intent.ACTION_VIEW, Uri.parse(sms: 06)); m_intent.putExtra(sms_body, Hello World); startActivity(m_intent); On Dec 16, 10:50 pm, Bibou mebi...@gmail.com wrote: Hello everyone, I am trying to send a sms throughout an application. I

[android-developers] Re: Send SMS to Email

2009-02-17 Thread Noam
Does anyone please know how to do it? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group,

[android-developers] Re: Send SMS to Email

2009-02-17 Thread weaselgrater
I'm pretty sure the SMS class that your using provided to you by google is sending a textmessage. To a phone. Using a phone number. You are going to have to find a way to actually send an email. On Feb 17, 11:28 am, Noam noam.ha...@gmail.com wrote: Does anyone please know how to do it?

[android-developers] Re: Send SMS to Email

2009-02-17 Thread Noam
Ok. Thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: Send SMS to Email

2009-02-16 Thread Noam
I know that this would work because if I send an SMS on my Verizon Razor V3m to an email address, it gets sent to that email address. There has to be a way to do this with the Android. --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[android-developers] Re: send SMS

2008-09-09 Thread De San Nicolas Jean Philippe
hello, no I using the m. Is it the reason? thank's for the response... 2008/9/8 Megha Joshi [EMAIL PROTECTED] Are you using the latest sdk 0.9? 2008/9/7 jphdsn [EMAIL PROTECTED] hello, I'm a new french developer on android. I try the SMSAPISample but it doesn't work. import

[android-developers] Re: send SMS

2008-09-09 Thread Megha Joshi
2008/9/9 De San Nicolas Jean Philippe [EMAIL PROTECTED] hello, no I using the m. Is it the reason? Yes, please use the latest sdk and ADT plugin. thank's for the response... 2008/9/8 Megha Joshi [EMAIL PROTECTED] Are you using the latest sdk 0.9? 2008/9/7 jphdsn [EMAIL PROTECTED]

[android-developers] Re: send SMS

2008-09-09 Thread De San Nicolas Jean Philippe
OK thank you. I hope give you help if I can in the future. 2008/9/9 Megha Joshi [EMAIL PROTECTED] 2008/9/9 De San Nicolas Jean Philippe [EMAIL PROTECTED] hello, no I using the m. Is it the reason? Yes, please use the latest sdk and ADT plugin. thank's for the response...

[android-developers] Re: send SMS

2008-09-08 Thread Megha Joshi
Are you using the latest sdk 0.9? 2008/9/7 jphdsn [EMAIL PROTECTED] hello, I'm a new french developer on android. I try the SMSAPISample but it doesn't work. import android.app.PendingIntent is not recognize. I 've take a look to the documentation and It seems that there is no other

[android-developers] Re: Send SMS from one emulator instance to another

2008-08-29 Thread Megha Joshi
Please reference the SMSTest sample app uploaded in the Files section. It shows how to send SMS between two emulators using SMSManager APIs: http://groups.google.com/group/android-developers/files 2008/8/29 Devesh [EMAIL PROTECTED] Hi, I have read many posts on the Android developers forum,

[android-developers] Re: Send SMS from Emulator

2008-06-23 Thread senthil arjunan
Hi Ramesh, Pls follow this link...hope to help u.. http://www.anddev.org/how_to_send_sms-t552.html \ Regardsn Senthil Arjunan On Mon, Jun 23, 2008 at 12:17 PM, Ramesh [EMAIL PROTECTED] wrote: Hi, In My Application, I have send sms from emulator with out network. at the time