Call forwarding

后端 未结 2 1466
死守一世寂寞
死守一世寂寞 2020-11-29 08:41

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

2条回答
  •  迷失自我
    2020-11-29 09:30

    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);
    

提交回复
热议问题