Re: [android-developers] make or receive call secretly programmatically Android

2011-11-28 Thread Mark Phillips
Sounds like the OP wants to make a ”but-dialing” app...;) Mark On Nov 28, 2011 6:16 PM, "Lew" wrote: > On Monday, November 28, 2011 4:17:34 PM UTC-8, James Black wrote: >> >> I don't see why a person would install a program that could make calls >> secretly, as it could then spy on people withou

Re: [android-developers] make or receive call secretly programmatically Android

2011-11-28 Thread Lew
On Monday, November 28, 2011 4:17:34 PM UTC-8, James Black wrote: > > I don't see why a person would install a program that could make calls > secretly, as it could then spy on people without their knowledge. Or rack up their peak minutes and cost them a bunch of money. So, having the ability t

Re: [android-developers] make or receive call secretly programmatically Android

2011-11-28 Thread James Black
I don't see why a person would install a program that could make calls secretly, as it could then spy on people without their knowledge. So, having the ability to do that would be bad for a phone, so I doubt you will see this capability, unless you release your own version of Android OS. On Mon,

Re: [android-developers] make or receive call secretly programmatically Android

2011-11-28 Thread Mark Murphy
Fortunately, this is not possible. On Fri, Nov 25, 2011 at 5:17 AM, ZeeShaN AbbAs wrote: > hey I want to make a call from my application, so far I found that > > > Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + > phoneNumber)); > callIntent.setFlags(Intent.FLAG_ACTIVITY_NE

[android-developers] make or receive call secretly programmatically Android

2011-11-28 Thread ZeeShaN AbbAs
hey I want to make a call from my application, so far I found that Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phoneNumber)); callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.startActivity(callIntent); but there is a problem that I want to call person secret

[android-developers] make or receive call secretly programmatically Android

2011-11-28 Thread ZeeShaN AbbAs
hey I want to make a call from my application, so far I found that Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phoneNumber)); callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.startActivity(callIntent); but there is a problem that I want to call person secret