[android-developers] Is possible to change the preferred contact telephone number?

2009-07-09 Thread Monkiki
I wonder if I can change the preferred contact telehone number from the API (nort manually, of course) --~--~-~--~~~---~--~~ 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: Is possible to change the preferred contact telephone number?

2009-07-09 Thread Monkiki
Seems to be set primary flag into a contact phone. But I am not sure I modify the database is a good idea. On 9 jul, 13:54, Monkiki monk...@gmail.com wrote: I wonder if I can change the preferred contact telehone number from the API (nort manually, of course

[android-developers] Is possible get notified when the user send an SMS or make a call

2009-06-10 Thread Monkiki
I've been searching the application permissions and I see no way to make an app to enable getting notified when the user send an SMS or make a phone call. How can I accomplish this task? Thanks in advance. --~--~-~--~~~---~--~~ You received this message because

[android-developers] Re: Is possible get notified when the user send an SMS or make a call

2009-06-10 Thread Monkiki
the new sent messages. You can do similar thing with call log or use PhoneStateListener and listen when the call is on hook, off hook and idle. -Mika On Jun 10, 1:42 pm, Monkiki monk...@gmail.com wrote: I've been searching the application permissions and I see no way to make an app

[android-developers] Re: Interacting with remote databases

2009-06-10 Thread Monkiki
or you can make use of webservices with json. On Jun 9, 9:40 pm, Kory kory...@gmail.com wrote: Hi All, Lets say Im creating an Android app for a company that already provides some sort of online service. I want my android app to extend this online service and I want the app to interact

[android-developers] Socket timeout not working?

2009-06-05 Thread Monkiki
In the sample code, a SocketTimeoutException should be thrown if the connection can't be stablished in a second, isn't it? try { s = new Socket(host, port); s.setSoTimeout(1000); if (s.isConnected())