Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android - Is it possible to programatically disable certain functionality?

Tags:

Are the following actions possible using the latest version of the Android API?:

  1. Temporarily disable sending text messages

  2. Temporarily disable receiving text messages

    *Ideally, I would intercept them and queue them up for later delivery.

  3. Temporarily disable incoming calls except from certain phone numbers

  4. Temporarily disable outgoing calls except to certain phone numbers

like image 383
cakeforcerberus Avatar asked Jul 24 '09 20:07

cakeforcerberus


1 Answers

You can turn on airplane mode, which disables all radios.

Beyond that, none of what you wish to do appears possible from an ordinary Android application.

like image 143
CommonsWare Avatar answered Oct 11 '22 22:10

CommonsWare