dialing

Call a computer with another computer (Dial up Modem)

北城以北 提交于 2020-01-01 06:12:07
问题 is it possible to call Computer A with Computer B in Same Country via theirs dial up modems? i mean use computer as telephone (with Dial Up modem) i no need transferring voice just : 1) Computer A Dialing Computer B (with the Phone number) 2) Computer B is see that computer A is calling. 3) Computer B Answer. please putting sample code or link for more information. if there is any library exist that made my work easier introduce to me. i don't want to involving with AT Commands. does this

Starting the application from a BroadCastReceiver (NEW_OUTGOING_CALL doesn't always work)

百般思念 提交于 2019-12-24 11:36:57
问题 Well, I've written an application that starts by dialing an specific number, I have used NEW_OUTGOING_CALL (a broad cast receiver) to catch the dial event. So far the broad cast receiver on my AndroidManifest.xml is like the following code: <receiver android:name=".CustomBroadCastReceiver"> <intent-filter> <action android:name="android.intent.action.NEW_OUTGOING_CALL" /> </intent-filter> </receiver> The problem is that when I try it on a new system, it doesn't work at first , But after a few

Call a computer with another computer (Dial up Modem)

夙愿已清 提交于 2019-12-03 16:30:56
is it possible to call Computer A with Computer B in Same Country via theirs dial up modems? i mean use computer as telephone (with Dial Up modem) i no need transferring voice just : 1) Computer A Dialing Computer B (with the Phone number) 2) Computer B is see that computer A is calling. 3) Computer B Answer. please putting sample code or link for more information. if there is any library exist that made my work easier introduce to me. i don't want to involving with AT Commands. does this library help me? Have I Use TAPI? thanks. Yes. As long as both computers have compatible modems. You'll

How to construct a telephone number link on Android that includes an extension

牧云@^-^@ 提交于 2019-11-30 17:42:06
On a web page I have a link to a telephone number with extension like this: <a href="tel:011234404,123456">call now</a> When I tap this link in an iPhone browser, the iPhone will dial 011234404 and then when the call is answered it will dial the extension 123456. This is wonderful, however it does not appear to work at all on android (the main number is dialed and the extension is ignored). Other people seem to be using ";" or even "p" instead of the comma separator on Android with some success, but I am unable get anything to work. What is the standard for this type of link on Android? Please

How to construct a telephone number link on Android that includes an extension

允我心安 提交于 2019-11-30 01:23:15
问题 On a web page I have a link to a telephone number with extension like this: <a href="tel:011234404,123456">call now</a> When I tap this link in an iPhone browser, the iPhone will dial 011234404 and then when the call is answered it will dial the extension 123456. This is wonderful, however it does not appear to work at all on android (the main number is dialed and the extension is ignored). Other people seem to be using ";" or even "p" instead of the comma separator on Android with some