呼叫转移 [英] Call forwarding

查看:214
本文介绍了呼叫转移的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想所有呼叫我的电话号码转发到pdefined新的$ P $数 自动。是否有可能转来电?

I would like to forward all calls to my number on to the new predefined number automatically. Is it possible to forward incoming call ?

也许是可能的Froyo的至少。我发现应用程序调用方便呼叫转移。 <一href="http://www.appstorehq.com/easycallforwarding-android-189596/app">http://www.appstorehq.com/easycallforwarding-android-189596/app 但是很多人看这实际上并没有正常工作。

Probably it is possible for Froyo at least. I found application called Easy Call Forwarding. http://www.appstorehq.com/easycallforwarding-android-189596/app But many people reckon it doesn't work actually.

我们可以看到转接呼叫通过 onCallForwardingIndicatorChanged() PhoneStateListener 但 我不知道如何设置转发模式。

We can notice forwarded call by onCallForwardingIndicatorChanged() from PhoneStateListener but I have no idea how to set forwarding mode.

推荐答案

我探讨了在网络上,并得到了回答我的问题是如何可以编程转发呼叫。加code这些线和一条将能够实现这一目标。

I explored on the net and got the answer to my question that how one can forward a call programmatically. Add these lines of code and one will be able to achieve it.

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重新presents的电话号码。添加选择恰当的电话号码,你想在这里。人们可以拨打## 21#停用该服务。

Here 1234567890 represents the phone number. Add the approriate phone number as you wish here. One can dial ##21# to deactivate the service.

这篇关于呼叫转移的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆