1

I have a list of people in my app and when the user taps one of the list items, that person is called. Is it possible to hide the called number, so the person would be called but the number would't show in android dialer application and during the calling?

DixieFlatline
  • 7,895
  • 24
  • 95
  • 147
  • Even if you could, anybody with itemised billing will be able to determine the number at a later time... – forsvarir May 11 '11 at 20:02

1 Answers1

0

No. When you pass the Intent off to startActivity or startActivityForResult, the other activity has control until that activity exits. This is to prevent apps from making calls to 900 numbers without the user's knowledge.

Erik Nedwidek
  • 6,134
  • 1
  • 25
  • 25