|
Is it possible to write a program that will change the phone numbers a mobile phone redirects calls to if it cannot be reached by the network?
Started by David on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I'm not familiar enough to know how to do this on a per phone system.
If you're talking about a mobile phone redirecting calls that cannot a solution specific to the phone OS.
What you're asking about.
|
|
Does anyone know if one of these devices connect to the web whether their phone number can be read from a header or some other means?
Started by spidee on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This is a privacy issue for many people and the consensus is that the minor inconvenience... .
Edit: Ah, I see you want to get the phone number.
Your IP address will be visible to the web server, but that is it .
Phone numbers don't go in HTTP headers.
|
|
I need to activesync all my oldcontacts to a new phone, but can't see how to do it in the software. Any suggestions?
Started by digiguru on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
SPB Backup
14-days to your computer? Then just sync your new phone with your computer? If you don't have any syncing of contacts going on then you have....
I think best way is backup in the phone via SPB Backup and restore at new phone.
|
Ask your Facebook Friends
|
In other words, is there an ID for each and every mobile phone--that makes it different.
No two phones can have the same ID. (I'm talking about smartphones ...android, iphone, etc)
Started by alex on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Not sure how you'd go about getting hold of either from within an app running on the phone.
To the physical device/phone, as opposed to the IMSI which is linked to the SIM card and therefore the customer account.
|
|
Hello,
I am using android.media.MediaPlayer object to play audio files in my app. Everything works fine but when a phone call comes while a song is playing the app does not pause the media player and you can hear the song during the phone call. Please...
Started by mudit on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
When your Activity (or service) is interrupted by the phone call place MediaPlayer#pause that MediaPlayer is automatically paused as well
Use a PhoneStateListener to find out when the phone.
|
|
I noticed when using my phone's data access that I have a public IP.
How is the network setup with this (using Verizon):
Am I behind a proxy server and the IP is the proxies, not my own? If not, is there some restrictions or firewall prevention malicious...
Started by Aequitarum Custos on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
It may be possible to write a server application....
I can't comment on the Droid but on my BlackBerry I can find out my phone's real IP address using its built-in connection diagnostics.
It has pretty good proxy detection.
From your phone's browser.
|
|
This is re-posted from something I posted on the DDD Yahoo! group.
All things being equal, do you write phone.dial(phoneNumber) or phoneNumber.dialOn(phone)? Keep in mind possible future requirements (account numbers in addition to phone numbers, calculators...
Started by moffdub on
, 14 posts
by 14 people.
Answer Snippets (Read the full thread at stackoverflow):
Another way to look at it is does....
Actor.Verb( inputs ) -> outputs INTO the phone, so phone.dial() that way you can also phone.answer() phone.disconnect() phone.powerOFF, ect.
Phone.dial() , because it's the phone that does the dialing.
|
|
What's the longest possible worldwide phone number I should consider in SQL varchar(length) for phone.
considerations:
+ for country code () for area code x + 6 numbers for Extension extension (so make it 8 {space}) spaces between groups (i.e. in American...
Started by Shimmy on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Since this is the GSM representation of a phone number, and it's usage is nibble.
For 'dialing number'.
|
|
My android app has nothing to do with phone calls, but I'm seeing that when I install a debug build on my test device it requires "Phone Calls: read phone state and identity" permissions. (I make no mention of this in AndroidManifest.xml).
I'd like to...
Started by Mike Kale on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The full story is cleared up here: http://blogs.zdnet.com/Burnette/?p=1369&page to be able to modify the contents... .
Assign
android.permission.WRITE_EXTERNAL_STORAGE and android.permission.READ_PHONE_STATE
to any app about READ_PHONE_STATE.
|
|
Hi SO,
I need to build a web page for mobile device. There's only one thing I still haven't figured out: how can I trigger a phone call through the clic of an image or text.
Is there a special url I could enter like the mailto: tag for emails ?
Device...
Started by Blade on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Found is here:
http://pointbeing.net/weblog/2010/01/making-phone-calls-and-sending-sms-with-html.html.
|