Hi All,
I am lookink for an android software which allows to add a prefix (and/or rules) to ougoing calls.
Windows mobile useres can install and use "Magicall" by mobiion software (http://www.mobiion.com/magicall.html),
but, at the moment, I haven't found anything similar for Android.
Is there anyone that can suggest or develop such a software?
thanks!
any ideas? thanks
Try GV dialer, or Calling Card Dialer. Both allow you to program a preset order to dial, you can also program in pauses and such.
Hope you like puzzles! it's an easy one.
Prefixer from www.253below.com will do what you are asking for.
I use phonecard express, I have yet to find anything close to magicall for android...
Sent from my PC36100 using XDA App
Is there an answering machine kind of app available for Android other than Google Voice? Or does Android not allow apps to answer and record calls automatically? It'll be great to have such an app. No voicemail charges, and you can manage the recorded calls on your own.
PS: Sorry if this has already been asked. I could not find a thread for Android about the same.
Moved to themes and apps per op request
I am working in android application something like when i speak some particular word over the phone like "help" the application should automatic send message to desired user that is saved on phone....
but i couldn't figure the right way
so thing is that how can i create such application in short time...
help me...
Do you have any code started? If so what do you have?
I am trying to make my first app. I want it to have no icon in the apps tray and be hidden, with a name like Android system.
I want it to block sms from a specific number, and possibly forward it to another number, without the origional recipitent seeing it period. I want it to block incoming calls from the same specific number and not notify the origal recipitent of call blocked. I want it to block outgoing sms to that same specific number without notifying the sender. And/or send that message intended for the origional number to a secoundary number. And same with calls, i would like calls to that specific number to be blocked and not notify the caller that their call is not going to the specific number.
Do you get what im going for here? I want an app made specifically to install on one specific persons android, to block all contact between that phone, and one specific other persons number, without notifying either party their communication of choice is not reaching the other person. With the possibility of the transactions actually going to a 3rd number soley to be used as a "monitor" if you will.
Can anyone help me code this, itll be my first app, ive never done such. Or if its easy for a senior coder, could you throw the app together for me?
Any and all help is GREATLY appreciated. Honestly. I would like to learn to do this myself in the future, so just help with setting up proper code is good enough!
robles4242 said:
I am trying to make my first app. I want it to have no icon in the apps tray and be hidden, with a name like Android system.
Click to expand...
Click to collapse
Hi first off all, if you want hide the application in the apps tray, your phone need to be rooted
robles4242 said:
I am trying to make my first app. I want it to have no icon in the apps tray and be hidden, with a name like Android system.
I want it to block sms from a specific number, and possibly forward it to another number, without the origional recipitent seeing it period. I want it to block incoming calls from the same specific number and not notify the origal recipitent of call blocked. I want it to block outgoing sms to that same specific number without notifying the sender. And/or send that message intended for the origional number to a secoundary number. And same with calls, i would like calls to that specific number to be blocked and not notify the caller that their call is not going to the specific number.
Do you get what im going for here? I want an app made specifically to install on one specific persons android, to block all contact between that phone, and one specific other persons number, without notifying either party their communication of choice is not reaching the other person. With the possibility of the transactions actually going to a 3rd number soley to be used as a "monitor" if you will.
Can anyone help me code this, itll be my first app, ive never done such. Or if its easy for a senior coder, could you throw the app together for me?
Any and all help is GREATLY appreciated. Honestly. I would like to learn to do this myself in the future, so just help with setting up proper code is good enough!
Click to expand...
Click to collapse
This whole thing smells very "it puts the lotion in the basket"
relationship counseling maybe?
Cause what I read is. I don't want my significant other talking to person X so i wanna control it.
Creepy..... Very creepy
This requires a rooted device and it's pretty much illegal as far as im aware. For educational purpose:
A service(Services are not shown to the user directly) will be your sms listener and an activity will perform the sms actions.
You can possibly copy, resend and delete incoming messages in the activity. You pretty much wanna stay away from other people inboxes :}
Hi
I want to create a VOIP call app for android using android.net.sip library but don't know how to start.
What's the needed execution order of procedures?
For example::
createSipSession()
makeCall()
endCall()
(I want to call them in Qt using JNI)
I think here developer.android.com/guide/topics/connectivity/sip.html has very good and clear examples from How to receive a call, how to make a call and more