我想将所有呼叫自动转发到我的号码上的新预定义号码。是否可以转发来电?
也许至少 Froyo 是可能的。我发现名为 Easy Call Forwarding 的应用程序。http://www.appstorehq.com/easycallforwarding-android-189596/app但许多人认为它实际上不起作用。
我们可以注意到onCallForwardingIndicatorChanged()
从PneStateListener
转发的呼叫,但我不知道如何设置转发模式。
我在网上探索并得到了我的问题的答案,即如何以编程方式转发调用。添加这些代码行,一个将能够实现它。
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 # 以停用该服务。
我的解决方案:
Intent intent = new Intent(Intent.ACTION_CALL);
String prefix = "#31#";
prefix = Uri.encode(prefix);
intent.setData( Uri.p("tel:"+prefix+"123456"));
startActivity(intent);
本站系公益性非盈利分享网址,本文来自用户投稿,不代表边看边学立场,如若转载,请注明出处
评论列表(74条)