I would like to forward all calls to my number on to the new predefined number automatically. Is it possible to forward incoming call ?
Probably it is possible for
My solution:
Intent intent = new Intent(Intent.ACTION_CALL); String prefix = "#31#"; prefix = Uri.encode(prefix); intent.setData( Uri.parse("tel:"+prefix+"123456")); startActivity(intent);