[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

code
Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse(tel: +
phoneNumber));
callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(callIntent);
/code

but there is a problem that I want to call person secretly and this
call the default Activity can I write my own activity for making call
or receiving call secretly (means without any UI call run on
background)??

-- 
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@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[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

code
Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse(tel: +
phoneNumber));
callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(callIntent);
/code

but there is a problem that I want to call person secretly and this
call the default Activity can I write my own activity for making call
or receiving call secretly (means without any UI call run on
background)??

-- 
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@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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 meeaaa...@gmail.com wrote:
 hey I want to make a call from my application, so far I found that

 code
 Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse(tel: +
 phoneNumber));
 callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
 context.startActivity(callIntent);
 /code

 but there is a problem that I want to call person secretly and this
 call the default Activity can I write my own activity for making call
 or receiving call secretly (means without any UI call run on
 background)??

 --
 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@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://github.com/commonsguy
http://commonsware.com/blog | http://twitter.com/commonsguy

Warescription: Three Android Books, Plus Updates, One Low Price!

-- 
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@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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, Nov 28, 2011 at 6:03 PM, Mark Murphy mmur...@commonsware.comwrote:

 Fortunately, this is not possible.

 On Fri, Nov 25, 2011 at 5:17 AM, ZeeShaN AbbAs meeaaa...@gmail.com
 wrote:
  hey I want to make a call from my application, so far I found that
 
  code
  Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse(tel: +
  phoneNumber));
  callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  context.startActivity(callIntent);
  /code
 
  but there is a problem that I want to call person secretly and this
  call the default Activity can I write my own activity for making call
  or receiving call secretly (means without any UI call run on
  background)??
 
  --
  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@googlegroups.com
  To unsubscribe from this group, send email to
  android-developers+unsubscr...@googlegroups.com
  For more options, visit this group at
  http://groups.google.com/group/android-developers?hl=en
 



 --
 Mark Murphy (a Commons Guy)
 http://commonsware.com | http://github.com/commonsguy
 http://commonsware.com/blog | http://twitter.com/commonsguy

 Warescription: Three Android Books, Plus Updates, One Low Price!

 --
 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@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
I know that you believe you understand what you think I said, but I'm not
sure you realize that what you heard is not what I meant.
- Robert McCloskey

-- 
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@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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 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, Nov 28, 2011 at 6:03 PM, Mark Murphy mmu...@commonsware.comwrote:

 Fortunately, this is not possible.

 On Fri, Nov 25, 2011 at 5:17 AM, ZeeShaN AbbAs meea...@gmail.com wrote:
  hey I want to make a call from my application, so far I found that
  ... [snip] ...
  but there is a problem that I want to call person secretly and this
  call the default Activity can I write my own activity for making call
  or receiving call secretly (means without any UI call run on
  background)??

  
-- 
Lew

-- 
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@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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 lewbl...@gmail.com 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 without their knowledge.


 Or rack up their peak minutes and cost them a bunch of money.

 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, Nov 28, 2011 at 6:03 PM, Mark Murphy mmu...@commonsware.comwrote:

 Fortunately, this is not possible.

 On Fri, Nov 25, 2011 at 5:17 AM, ZeeShaN AbbAs meea...@gmail.com
 wrote:
  hey I want to make a call from my application, so far I found that
  ... [snip] ...
  but there is a problem that I want to call person secretly and this
  call the default Activity can I write my own activity for making call
  or receiving call secretly (means without any UI call run on
  background)??


 --
 Lew

  --
 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@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en