无条件呼叫转移:呼叫转移(droid call forwarding)

我想将所有呼叫自动转发到我的号码上的新预定义号码。是否可以转发来电?

也许至少 Froyo 是可能的。我发现名为 Easy Call Forwarding 的应用程序。http://www.appstorehq.com/easycallforwarding-android-189596/app但许多人认为它实际上不起作用。

我们可以注意到onCallForwardingIndicatorChanged()PneStateListener转发的呼叫,但我不知道如何设置转发模式。

11

我在网上探索并得到了我的问题的答案,即如何以编程方式转发调用。添加这些代码行,一个将能够实现它。

String callForwardString = "**21*1234567890#";    
Intent intentCallForward = new Intent(Intent.ACTION_DIAL); // ACTION_CALL                               
Uri uri2 = Uri.fromParts("tel", callForwardString, "#"); 
intentCallForward.setData(uri2);                                
startActivity(intentCallForward); 

这里 1234567890 代表电话号码。在这据需要添加适当的电话号码。可以拨打 ## 21 # 以停用该服务。

3

我的解决方案:

Intent intent = new Intent(Intent.ACTION_CALL);  
String prefix = "#31#";          
prefix = Uri.encode(prefix);  
intent.setData( Uri.p("tel:"+prefix+"123456"));  
startActivity(intent);

本站系公益性非盈利分享网址,本文来自用户投稿,不代表边看边学立场,如若转载,请注明出处

(232)
免备案cdn国内节点:如何使用AWS外部管理的域创建指向Cloudfront CDN终端节点的子域
上一篇
电路板ce认证:Circuitmaker-手动定义电路板尺寸
下一篇

相关推荐

发表评论

登录 后才能评论

评论列表(74条)