[android-developers] Re: SMS related API

2014-08-03 Thread Nitin Gautam
Thanks Pent for the start point guidance, let me have a look on this and get back in case any hurdle :) -- 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

[android-developers] Re: SMS related API

2014-08-03 Thread Pent
Have a look at Telephony.Sms in the docs. To detect changes in the DB you can use ContentObserver. New messages can be detected also with Telephony.Sms.Intents.SMS_RECEIVED_ACTION, there's a lot of code on the internet for that. Pent -- You received this message because you are subscribed to

[android-developers] Re: SMS Receiver Issue

2013-09-09 Thread Piren
The SMS Receive broadcast is an ordered broadcast. Handcent catches the event before you and stops it from being propagated. change your receiver's priority to a higher one and it should work. On Saturday, September 7, 2013 7:34:22 PM UTC+3, fahad mullaji wrote: > > Guys, > > If user has insta

[android-developers] Re: SMS/MMS Default App source code into Eclipse?

2012-08-29 Thread Rajiv Singh
can u please provide me link to those repositories !! i m also working to modify default sms Application !! On Friday, 11 May 2012 02:34:53 UTC+5:30, Ginzorf wrote: > > Greetings all, > > I'm attempting to make some slight modifications to the SMS/MMS > application that comes included with Andr

[android-developers] Re: SMS Header

2012-08-03 Thread bob
I doubt your phone service provider will allow you to spoof SMS messages. On Wednesday, August 1, 2012 7:26:17 PM UTC-5, Basti189 wrote: > > Hello, > > I want to program an App which can send SMS with the special function. I > want to modify the header that the receiver of the sms don't see my

[android-developers] Re: SMS/MMS Default App source code into Eclipse?

2012-07-10 Thread jayesh jethava
Well... you need to include all files that are referenced If you don't have protobuf how do you expect the classes to use it to function ? In your project, you should have the following packages (create them and add all the files to them if you don't already have them): Your own source pack

[android-developers] Re: SMS application for iPhone - http://alturl.com/jfzi4

2012-04-12 Thread Ali Chousein
> We have recently developed SMS Application (Beta version) for iPhone. Find > below the link for your reference. Good for you man, thumps f@#~!*@& up. And what do you want us to do after your great achievement? Give up any interest developing apps for Android and spend 3K-4K $$$ just to get start

[android-developers] Re: SMS URI trigger Application

2012-04-03 Thread Ali Chousein
http://stackoverflow.com/questions/2372248/launch-sms-application-with-an-intent - Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1 http://weatherbuddy.blogspot.com | http://twitter.com/weather_buddy http://www.codeproject.c

[android-developers] Re: SMS with name

2012-03-23 Thread Ali Chousein
Yes it is possible. After you have the name, search the contacts to see if you have such a name. If yes, you can query the phone number and send the SMS to this phone number. You need to study and understant the ContactsContract interface: http://developer.android.com/reference/android/provider/Con

[android-developers] Re: SMS with name

2012-03-23 Thread vivek elangovan
Hi members, I am developing a SMS application whereas using sendSMS function i am able to do that. what i need to do is instead of sending msg with number i want to send that with name.is it possible ? -- You received this message because you are subscribed to the Google G

[android-developers] Re: SMS as techinque for chatting

2012-03-22 Thread Ali Chousein
> I hv created an application that send and receive but couldnt mk these msgs > as chatting? What's so difficult about it? You already have all SMS messages you wish to display on the screen. You need to understand how you should design your UI. You have to make choices how your UI should look lik

Re: [android-developers] Re: SMS Table

2012-02-22 Thread Deepa M
i want to create a own database to store all inbox messages... its my interest project..pls refer On 2/22/12, moktarul anam wrote: > Hi Deepa, > What do want to do ? already sms db table is there in android. > > > Moktarul > > On Feb 22, 12:56 pm, Deepa M wrote: >> Dear All >> >> can any one he

[android-developers] Re: SMS Table

2012-02-22 Thread moktarul anam
Hi Deepa, What do want to do ? already sms db table is there in android. Moktarul On Feb 22, 12:56 pm, Deepa M wrote: > Dear All > > can any one help me to create a sms database table as sms table in > android to store all iin that created database incoming messages ... > > -- > Thanks& Regard

[android-developers] Re: SMS Table

2012-02-22 Thread Nitin Sethi
Deepa, A good place to start would be: http://developer.android.com/resources/tutorials/notepad/notepad-ex1.html On Feb 22, 12:56 pm, Deepa M wrote: > Dear All > > can any one help me to create a sms database table as sms table in > android to store all iin that created database incoming messag

[android-developers] Re: Sms Manager

2012-02-16 Thread Ali Chousein
Yes it is normal. First when I saw this behavior I was also surprized, when then when I thought about it, it made sense that the SMSManager does not mess around with the DB of the SMS application on the phone. - Ali Chousein http://www.codeproject.co

[android-developers] Re: SMS Manager

2012-02-07 Thread Ali Chousein
Hhhmmm, I doubt that the Android framework supports this by default. When you send an SMS to another emulator on the same machine, you specify other emulator's port number. If you want to send an SMS to another machine, I guess you'll need something like: 1. You are working on machine M1. Send SMS

[android-developers] Re: SMS Manager

2012-02-05 Thread vivek elangovan
Hi members, Using SMS Manager i m able to send message from one emulator to another emulator which is in my local machine and it is working fine.Is it possible to send SMS from my emulator to another emulator of another machine ? -- You received this message because you are subs

Re: [android-developers] Re : SMS application

2012-02-02 Thread Jagruti Sangani
HI, Can you send me your application full code?Because I really want that application for my project training. Thanks in advance. -- 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@google

[android-developers] Re : SMS application

2012-02-01 Thread vivek elangovan
Hi members, I m developing one application to send SMS,here i used sendSMS() function and SmsManager class and it is working fine for sending messages between two emulators.I need to send msgs to real phones for that i have to mention some SMS gateway.So in SmsManager class wh

[android-developers] Re: SMS and Application Integration! Need Suggestion

2012-01-13 Thread Ali Chousein
This is an excellent tutorial: http://mobiforge.com/developing/story/sms-messaging-android  You can start from here and build the functionality you are interested in. - Ali Chousein http://www.codeproject.com/KB/android/PayGol-Android.aspx http://we

Re: [android-developers] Re: SMS and Application Integration! Need Suggestion

2012-01-12 Thread TreKing
On Thu, Jan 12, 2012 at 9:32 AM, Prathamesh wrote: > Any Suggestion please Suggestion: http://developer.android.com/search.html#q=sms&t=0 Then explain what you have tried and what is not working.

[android-developers] Re: SMS and Application Integration! Need Suggestion

2012-01-12 Thread Prathamesh
Any Suggestion please On Jan 12, 5:14 pm, Prathamesh wrote: > Hi all, > > I want to read received SMS in my application without closing or > minimizing or switching application. > > Is there any provision in android for such functionality ? > > How to integrate Application and SMS ? > > Assum

[android-developers] Re: SMS interface and timestamps

2011-11-01 Thread gjs
Hi, See http://developer.android.com/reference/android/location/Location.html and http://developer.android.com/guide/topics/location/obtaining-user-location.html Regards On Nov 1, 8:52 pm, Belvedere Computer Services wrote: > i am new at this but i am sure what he is saying is A class > repre

[android-developers] Re: SMS interface and timestamps

2011-11-01 Thread Belvedere Computer Services
i am new at this but i am sure what he is saying is A class representing a geographic location sensed at a particular time (a "fix"). A location consists of a latitude and longitude, a UTC timestamp. and optionally information on altitude, speed, and bearing. But what you are saying is that any tra

Re: [android-developers] Re: SMS interface and timestamps

2011-11-01 Thread John Goche
On Tue, Nov 1, 2011 at 8:37 AM, gjs wrote: > Hi, > > For (1) probably not, sms can be queued by the operator for quite a > while if recipient phone is off. > > For (2) you can get an accurate GMT timestamp from the GPS Location, > provided you have a current gps fix. > What do you mean by curren

[android-developers] Re: SMS interface and timestamps

2011-11-01 Thread gjs
Hi, For (1) probably not, sms can be queued by the operator for quite a while if recipient phone is off. For (2) you can get an accurate GMT timestamp from the GPS Location, provided you have a current gps fix. Regards On Nov 1, 6:29 am, John Goche wrote: > Hello, > > I would like to code with

[android-developers] Re: SMS Notifications

2011-08-24 Thread Amit
Hi, What is your expectation here? Do you want to process it first or you only want to process it? I mean, you can declare your app as default SMS receiver and then kill the intent. OR, you just set the high priority so that you will be the first one to receive it but again Android gives you so

[android-developers] Re: SMS Broadcastreceiver not received when GO SMS Pro installed

2011-07-29 Thread Jim
GoSMS has the SMS_RECEIVED priority set to 2147483647. Android docs state that it should be less than 1000 (http://developer.android.com/ reference/android/content/IntentFilter.html#SYSTEM_HIGH_PRIORITY). Priorities set too high will have unpredictable results, just as apps with the same priority l

[android-developers] Re: SMS Broadcastreceiver not received when GO SMS Pro installed

2011-07-11 Thread Subba
Any luck on this issue? am facing the same issue... On Jul 3, 9:44 pm, Android Geek wrote: > I have implemented an SMS receiver which intercepts incoming SMS > messages without any issues. However, when I install GO SMS Pro and > set "Disable other message notification", then my app does not rece

Re: [android-developers] Re: SMS -Sending

2011-04-24 Thread Chambras
you can connect to your emulator or device using adb shell and from there you can see the log file and see what is the error here you can find more documentation on this topic http://developer.android.com/guide/developing/tools/adb.html -- You received this message because you are subscribed to

Re: [android-developers] Re: SMS -Sending

2011-04-24 Thread kaushik p
Hi , thanks for the reply , i am very new to android . I have put the permission in the manifest file "". I am not getting any errors the application is not responding and i have to force stop it . and what is logcat ? On Mon, Apr 25, 2011 at 7:18 AM, Chambras wrote: > Did you add the permis

[android-developers] Re: SMS -Sending

2011-04-24 Thread Chambras
Did you add the permission in your manifest file What error do you see in the logcat? -- 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 grou

[android-developers] Re: SMS sending through HTC Desire

2011-01-04 Thread Jawwad Farooq
No, not about voicemail ... I am talking about simple phone call On Dec 31 2010, 10:02 pm, XiaoXiong Weng wrote: > Wouldn't that just goto the voicemail? > > Erh, when I send text to myself it works J > > From: android-developers@googlegroups.com > [mailto:android-develop...@googlegroups.com] On

[android-developers] Re: SMS sending through HTC Desire

2011-01-04 Thread Jawwad Farooq
Yes I am calling from another phone on my development phone ... On Dec 31 2010, 9:05 pm, TreKing wrote: > On Thu, Dec 30, 2010 at 2:22 AM, Jawwad Farooq wrote: > > > I make a call to my number and got the busy tone". > > Please tell me you mean you used a different phone to call your develo

[android-developers] Re: SMS Receipt Notification

2010-12-30 Thread Ian
No takers for this yet. I see that we used to be able to send PDU data directly - which may have given me a route to achieve this, but this has been removed. Is there a security issue here? What I am trying to achieve is to get my application to send an 'important' email for which my application

Re: [android-developers] Re: SMS PDU Behaviour

2010-12-03 Thread nithya nataraj
it internally aggregates the 160 + 40 characters and > sends out a single broadcast? > -- 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: SMS PDU Behaviour

2010-12-02 Thread Tez
any ideas? On Dec 1, 7:49 pm, Tez wrote: > Sms's have a max length of 160 characters. Assuming a sender sent an > sms with length 200 chars, does the system send out 2 SMS_RECEIVED > broadcasts? or it internally aggregates the 160 + 40 characters and > sends out a single broadcast? > > Cheers, >

Re: [android-developers] Re: sms uri

2010-10-15 Thread Kumar Bibek
I don't know about their plans. :) On Fri, Oct 15, 2010 at 5:26 PM, Abava wrote: > that was my question exactly. Do you know something about their > plans? 2.2? > > >Though the SMS app has a content > > provider which you can use. > even from the web page? > > On 14 окт, 13:28, Kumar Bibek wro

[android-developers] Re: sms uri

2010-10-15 Thread Abava
that was my question exactly. Do you know something about their plans? 2.2? >Though the SMS app has a content > provider which you can use. even from the web page? On 14 окт, 13:28, Kumar Bibek wrote: > It's not supported officially yet. Though the SMS app has a content > provider which you can

[android-developers] Re: sms uri

2010-10-14 Thread Kumar Bibek
It's not supported officially yet. Though the SMS app has a content provider which you can use. Search for a few samples, and you will find details regarding the content provider. Or you can pull out the related DB from the emulator and see the column names and table names... On Oct 13, 2:54 am, A

[android-developers] Re: Sms hiding and deletion

2010-07-23 Thread Andrea Rota
I am working on the same topic. Actually I am not able to do it, but I found that a developer has already done it. Check for "SMS Guard" on the market. I tried to get in touch with the developer, but he hasn't answered yet. On 8 Lug, 20:08, Usama wrote: > i am currently making an application in

Re: [android-developers] Re: SMS database access

2010-06-03 Thread Nando Android
What does allow for access to SMS regardless? Would that require program the underlining SDK instead of doing it via the Java API? I would like to have an agent on the phone that has access to that SMS database. Is it possible to do so? Thanks. On Thu, Jun 3, 2010 at 8:58 AM, Mike dg wrote: >

[android-developers] Re: SMS database access

2010-06-03 Thread Mike dg
There are undocumented content providers that allow "access" to SMS databases. However they are subject to change, and can, and do differ between devices. On Jun 3, 10:41 am, Nando Android wrote: > Hello all, > > I believe the Java API does not give full access to the SMS database and > other dat

[android-developers] Re: SMS text messages and data messages

2010-04-16 Thread Shih-Peng
There is a significant bug of the data SMS functionality on the released versions of SDKs. But same code might work fine on real device, like HTC G1 and HTC hero. On 4月16日, 上午3時48分, 64 wrote: > HEEELP > > Can anyone explain how to send sms text messages on a specific > appli

[android-developers] Re: SMS

2010-03-24 Thread Ozymandias
SMS_RECEIVED might point you in the right direction. On Mar 24, 1:23 am, irfan wrote: > Hello all > I am trying to make an application in android that can intercept an > incomming sms. I then want to parse it and then trigger certain events > according to certail header present in that sms or tex

[android-developers] Re: SMS BroadcastReceiver

2010-03-05 Thread weaselgrater
It's not. On Mar 5, 10:07 am, Ne0 wrote: > Hi, > > I am writing my own sms receiver app and i want it to catch all the > sms using a broadcast receiver. This on its own, is no problem, but i > want to be able to stop the message being passed to the messaging app. > Does anyone know if this is thi

[android-developers] Re: SMS ringtone

2010-03-04 Thread abdelmonim
Hi there, I just found one solution: I have to implement my own SMS client and play my tone when I recieve a SMS but it's heavy If anyone has another idea, please share with me Thanks On 2 mar, 11:55, abdelmonim wrote: > Can anyone help me? > Thanks > > On 1 mar, 16:24, abdelmonim abetti > wro

[android-developers] Re: SMS Interception

2009-12-07 Thread Raj
can we register a URI scheme just like the iphone SDK so as to open the App. Like for example: myapp:// is registered with my app and I should be able to start my app when SMS content contains the myapp:// link embedded. Thanks for the answer Raj On Dec 7, 6:58 am, "Dexter's Brain" wrote:

[android-developers] Re: SMS Interception

2009-12-07 Thread Dexter's Brain
Hi Raj, This is not possible, since this SMS broadcast is an unordered broadcast. So you can't intercept it, and prevent the broadcast to reach the default SMS application. Thanks, Kumar Bibek http://tech-droid.blogspot.com On Dec 3, 9:03 pm, Raj wrote: > Hi > > My app needs to intercept SMS m

Re: Re :Re: [android-developers] Re: SMS Database with new Hero ROM

2009-09-24 Thread Mark Murphy
> It wasn't clear to me > that > something I can access using the standard SDK might actually not be part > of > the public API. Think about it: pagefile.sys is accessible using the Windows SDK, yet I rather doubt Microsoft would consider manipulating that file to be part of its public API. The

Re :Re: [android-developers] Re: SMS Database with new Hero ROM

2009-09-24 Thread markus etter
Subject: Re: [android-developers] Re: SMS Database with new Hero ROMFrom: Markus Etter Date: Thu, 24 Sep 2009 20:33:58 +0200To: android-developers@googlegroups.com Mark Murphy wrote: I've developed an sms application. With the new Hero rom, the app doesen't work anymore. It seems

[android-developers] Re: SMS Database with new Hero ROM

2009-09-24 Thread Mark Murphy
> I've developed an sms application. With the new Hero rom, the app > doesen't work anymore. It seems as if the database has changed. > > I use the following approach to get the data I need: > > private String[] mProjection = new String[] > {"thread_id","address","body","read","date","m_type","typ

[android-developers] Re: SMS intent does not fill in number

2009-09-17 Thread Gustav Mauer
Thank you very much. That works great. On Sep 17, 5:28 pm, Jack Ha wrote: > Try: > >     sendIntent.putExtra("address", "123456"); > > -- > Jack Ha > Open Source Development Center > ・T・ ・ ・Mobile・ stick together > The coverage you need at the price you want > > The views, opinions and statement

[android-developers] Re: SMS intent does not fill in number

2009-09-17 Thread Jack Ha
Try: sendIntent.putExtra("address", "123456"); -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The coverage you need at the price you want The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessa

[android-developers] Re: SMS Notification

2009-08-18 Thread androiduser mobile
I would like to send and receive the SMS in the same emulator using an app. Thanks. On Aug 18, 11:24 am, androiduser mobile wrote: > Hello all, > > I am writing an app to generate an SMS notification in the > notification bar. I would like to run this app in an emulator(only one > instance). >

[android-developers] Re: Sms Broadcasts and Logs

2009-06-29 Thread fidji-florian
+1 I want to know when a sms to be send. (I want to count how many sms i send in a determinate time) Merci, Flo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, sen

[android-developers] Re: SMS Counter

2009-05-11 Thread Marco Nelissen
On Mon, May 11, 2009 at 11:55 AM, stevenroose wrote: > > Hi, > > I suggestion for Android I would like to do is a build-in SMS Counter. > When having plans that allow you to do a specified amount of SMS > messages in a month, an SMS Counter would be very useful, and I can't > imagine writing code

[android-developers] Re: SMS in android

2009-03-31 Thread mark . kahrl
You can receive an SMS mesage on the emulator by using emulator control, you'll need an actual device to fully test sending sms, the behavior is different on the emulator. M On Mar 30, 10:05 am, aglagla wrote: > Hello World! > I'm a beginner in android platform.I want to know how I

[android-developers] Re: SMS encoding?? how can i receive Chinese SMS???

2009-03-26 Thread 王心锋
yes, i send Chinese sms use eclipse, but receive data not correct. in source code , the data encoding is USC2, when i send by eclipse , convert data USC2 to GBK, also not correct. 2009/3/26 Jove Chia > does it related to encoding or font? > how you can send sms by eclipse? > > 2009/3/26 SinFran

[android-developers] Re: SMS encoding?? how can i receive Chinese SMS???

2009-03-26 Thread Jove Chia
does it related to encoding or font? how you can send sms by eclipse? 2009/3/26 SinFrancis > > I wanna receive Chinese SMS , > i use eclipse send Chinese SMS to emulator, but the message all like > this "?", > if the English SMS, not prob. > > I wanna know the encoding of SMS in Android.

[android-developers] Re: SMS sync with Gmail or something else

2009-02-19 Thread nEx.Software
http://code.google.com/p/android-sms/ On Feb 19, 8:45 pm, VA wrote: > I am looking for a functionality where the SMS on the phone can be > synced to cloud (preferably to GMail, like Chat). Is there work going > on in that area. Is there a SMS like service existing to which I can > perform sync.

[android-developers] Re: SMS Inbox: 2008's toughest problem ( At least for me)

2009-01-01 Thread Timothy DeWees
I ran into something similar and I needed to tell the manifest to use the right permission. Check your android manifest and make try something like this: http://schemas.android.com/apk/res/android"; package="com.app.you.package" android:versionCode="1" android:versionName="1.0

[android-developers] Re: SMS Inbox: 2008's toughest problem ( At least for me)

2008-12-31 Thread moazzamk
You can generally catch the errors in your code by putting it in try and catch block. Here's a tutorial on the whole process of debugging in Android : http://moazzam-khan.com/blog/?p=41 - Moazzam On Dec 31, 7:18 am, "linker lv" wrote: > Uri uri = Uri.parse("content://sms/undelivered"); > >  

[android-developers] Re: SMS Inbox: 2008's toughest problem ( At least for me)

2008-12-31 Thread linker lv
Uri uri = Uri.parse("content://sms/undelivered"); // Perform a managed query. The Activity will handle closing and requerying the cursor // when needed. Cursor cursor = getContentResolver().query(uri, null, null, null,null); startManagingCursor(curso

[android-developers] Re: SMS Inbox: 2008's toughest problem ( At least for me)

2008-12-31 Thread linker lv
you can use try catch, show your log. also, cursor should be close. have a try. 2008/12/31 > > ### > Please help me access the list of sms in the inbox. I am using this > code, please let me know what is wrong, it always gives a n u

[android-developers] Re: SMS entry

2008-11-29 Thread Kingorcus
anyone ?? On Nov 28, 5:33 pm, Kingorcus <[EMAIL PROTECTED]> wrote: > I am trying to insert a new SMS entry in the Database using the > undocumented SMS URI > > I am successful in accessing the sms table, but not the threads table > > anyone knows how to do it > > or what is the content name f

[android-developers] Re: Sms with Intent

2008-11-11 Thread for android
Any help?? On Tue, Nov 11, 2008 at 11:50 AM, for android <[EMAIL PROTECTED]> wrote: > I need to send an SMS with an Intent. whats the best way to test this.In > the emulator I can only send an SMS,but not an SMS with an intent. > > > Whats the best way to accomplish this testing? > > Thanks >

[android-developers] Re: sms messaging questions

2008-10-01 Thread Joey Yandle
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Please don't double post. It's obnoxious, especially on a high volume list like this one. Mailing lists often don't send your message for an indeterminate period of time, so just because you don't see it immediately doesn't mean that it was lost. >

[android-developers] Re: SMS Intents Missing From 1.0?

2008-09-25 Thread Reto Meier
The helper methods have disappeared but you can still listen for the Intent by using the String literal and extract the messages manually. This thread has the details: http://groups.google.co.uk/group/android-developers/browse_thread/thread/c51383cc8761ffd5# Cheers Reto Professional Androi

[android-developers] Re: SMS

2008-03-27 Thread Vijayabaskar s
Hi GUS , Thanks u r response.. i try it... Regards, Baskar --~--~-~--~~~---~--~~ 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 unsu

[android-developers] Re: SMS

2008-03-26 Thread GUS
Please baskar, read the documentation here: http://code.google.com/android/reference/android/telephony/gsm/package-summary.html You can also find a great tutorial about it on this link: http://www.anddev.org/recognize-react_on_incoming_sms-t295.html Regards, Gustavo Avila http://www.virtualsite.